Package com.google.caliper.bridge
Class VmStoppedMessage
- java.lang.Object
-
- com.google.caliper.bridge.VmStoppedMessage
-
- All Implemented Interfaces:
Serializable
public abstract class VmStoppedMessage extends Object implements Serializable
A message sent from a device to the runner to tell it that a VM stopped.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static VmStoppedMessagecreate(UUID vmId, int exitCode)Creates a newVmStoppedMessage.abstract intexitCode()Returns the exit code of the process.abstract UUIDvmId()Returns the UUID identifying the VM that stopped.
-
-
-
Method Detail
-
create
public static VmStoppedMessage create(UUID vmId, int exitCode)
Creates a newVmStoppedMessage.
-
vmId
public abstract UUID vmId()
Returns the UUID identifying the VM that stopped.
-
exitCode
public abstract int exitCode()
Returns the exit code of the process.
-
-