Package com.google.caliper.bridge
Class RemoteClasspathMessage
- java.lang.Object
-
- com.google.caliper.bridge.RemoteClasspathMessage
-
- All Implemented Interfaces:
Serializable
public abstract class RemoteClasspathMessage extends Object implements Serializable
Message sent by a remote device to provide the local worker classpath on that device.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Stringclasspath()Returns the classpath.static RemoteClasspathMessagecreate(String classpath, String nativeLibraryDir)Creates a newRemoteClasspathMessage.abstract StringnativeLibraryDir()Returns the path to native libraries.
-
-
-
Method Detail
-
create
public static RemoteClasspathMessage create(String classpath, String nativeLibraryDir)
Creates a newRemoteClasspathMessage.
-
classpath
public abstract String classpath()
Returns the classpath.
-
nativeLibraryDir
public abstract String nativeLibraryDir()
Returns the path to native libraries.
-
-