Java tutorial
/* * Copyright 2011-2018 GatlingCorp (https://gatling.io) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.gatling.http.client; import io.gatling.http.client.test.DefaultResponse; import io.gatling.http.client.test.listener.ResponseAsStringListener; import io.gatling.http.client.ahc.uri.Uri; import io.netty.handler.codec.http.HttpMethod; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.concurrent.CountDownLatch; public class MultipleRequestsMain { private static final Logger LOGGER = LoggerFactory.getLogger(MultipleRequestsMain.class); public static void main(String[] args) throws Exception { try (GatlingHttpClient client = new GatlingHttpClient(new HttpClientConfig())) { Request request = new RequestBuilder(HttpMethod.GET, Uri.create("https://gatling.io")) .setNameResolver(client.getNameResolver()).setRequestTimeout(1000).build(); final CountDownLatch latch1 = new CountDownLatch(1); client.execute(request, 0, true, new ResponseAsStringListener() { @Override public void onComplete() { LOGGER.debug(new DefaultResponse<>(status, headers, responseBody()).toString()); latch1.countDown(); } @Override public void onThrowable(Throwable e) { e.printStackTrace(); latch1.countDown(); } }); latch1.await(); final CountDownLatch latch2 = new CountDownLatch(1); client.execute(request, 0, true, new ResponseAsStringListener() { @Override public void onComplete() { LOGGER.debug(new DefaultResponse<>(status, headers, responseBody()).toString()); latch2.countDown(); } @Override public void onThrowable(Throwable e) { e.printStackTrace(); latch2.countDown(); } }); latch2.await(); } } }