use of org.webpieces.throughput.client.ClientAsync in project webpieces by deanhiller.
the class ThroughputEngine method runAsyncClient.
private void runAsyncClient(InetSocketAddress svrAddress, Protocol protocol, Clients creator) {
Http2Client client = creator.createClient();
ClientAsync async = new ClientAsync(client, config, protocol);
async.runAsyncClient(svrAddress);
}
Aggregations