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);
}