All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webpieces.webserver.test.ResponseExtract Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.webserver.test;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;

import org.webpieces.httpclient11.api.HttpFullResponse;


public class ResponseExtract {

	public static ResponseWrapper waitResponseAndWrap(CompletableFuture respFuture) {
		try {
			HttpFullResponse resp = respFuture.get(2, TimeUnit.SECONDS);
			return new ResponseWrapper(resp);
		} catch (Throwable e) {
			throw new RuntimeException(e);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy