Package com.github.dreamhead.moco.procedure

Examples of com.github.dreamhead.moco.procedure.LatencyProcedure


        return new FormRequestExtractor(checkNotNullOrEmpty(key, "Form key should not be null"));
    }

    public static LatencyProcedure latency(final long millis) {
        checkArgument(millis > 0, "Latency must be greater than zero");
        return new LatencyProcedure(millis);
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.procedure.LatencyProcedure

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.