Package org.platanios.tensorflow.proto
Interface RegisterGraphResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RegisterGraphResponse
,RegisterGraphResponse.Builder
public interface RegisterGraphResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getGraphHandle()
If the registration succeeds, returns an opaque graph_handle to the master.com.google.protobuf.ByteString
getGraphHandleBytes()
If the registration succeeds, returns an opaque graph_handle to the master.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getGraphHandle
java.lang.String getGraphHandle()
If the registration succeeds, returns an opaque graph_handle to the master. The master calls RunGraph with graph_handle to compute different steps.
string graph_handle = 1;
- Returns:
- The graphHandle.
-
getGraphHandleBytes
com.google.protobuf.ByteString getGraphHandleBytes()
If the registration succeeds, returns an opaque graph_handle to the master. The master calls RunGraph with graph_handle to compute different steps.
string graph_handle = 1;
- Returns:
- The bytes for graphHandle.
-
-