Package com.google.caliper.bridge
Class DryRunSuccessLogMessage
- java.lang.Object
-
- com.google.caliper.bridge.LogMessage
-
- com.google.caliper.bridge.DryRunSuccessLogMessage
-
- All Implemented Interfaces:
Serializable
public abstract class DryRunSuccessLogMessage extends LogMessage implements Serializable
A log message listing the IDs of successful dry-run experiments.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DryRunSuccessLogMessage()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaccept(LogMessageVisitor visitor)static DryRunSuccessLogMessagecreate(Iterable<Integer> ids)Creates a new dry-run success log message for the given experiment IDs.abstract com.google.common.collect.ImmutableSet<Integer>ids()Returns the IDs of the experiments that were successfully dry-run and not skipped.
-
-
-
Method Detail
-
create
public static DryRunSuccessLogMessage create(Iterable<Integer> ids)
Creates a new dry-run success log message for the given experiment IDs.
-
ids
public abstract com.google.common.collect.ImmutableSet<Integer> ids()
Returns the IDs of the experiments that were successfully dry-run and not skipped.
-
accept
public void accept(LogMessageVisitor visitor)
- Specified by:
acceptin classLogMessage
-
-