Package com.google.caliper.bridge
Class DryRunRequest
- java.lang.Object
-
- com.google.caliper.bridge.DryRunRequest
-
- All Implemented Interfaces:
WorkerRequest,Serializable
public final class DryRunRequest extends Object implements WorkerRequest
WorkerRequestfor telling the worker to do a dry-run of multiple experiments.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DryRunRequest(Iterable<ExperimentSpec> experiments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.collect.ImmutableSet<ExperimentSpec>experiments()Returns the set of experiments to be dry-run.Class<? extends WorkerRequest>type()Returns the type of the request.
-
-
-
Constructor Detail
-
DryRunRequest
public DryRunRequest(Iterable<ExperimentSpec> experiments)
-
-
Method Detail
-
type
public final Class<? extends WorkerRequest> type()
Description copied from interface:WorkerRequestReturns the type of the request.- Specified by:
typein interfaceWorkerRequest
-
experiments
public com.google.common.collect.ImmutableSet<ExperimentSpec> experiments()
Returns the set of experiments to be dry-run.
-
-