Package com.github.restdriver.serverdriver.http

Examples of com.github.restdriver.serverdriver.http.RequestConnectionTimeout


     * @param timeUnit The unit of the timeout.
     *
     * @return The RequestConnectionTimeout instance.
     */
    public static AnyRequestModifier withConnectionTimeout(int timeout, TimeUnit timeUnit) {
        return new RequestConnectionTimeout(timeUnit.toMillis(timeout));
    }
View Full Code Here

TOP

Related Classes of com.github.restdriver.serverdriver.http.RequestConnectionTimeout

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.