Package org.tensorflow.distruntime
Interface DeregisterGraphRequestOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeregisterGraphRequest,DeregisterGraphRequest.Builder
public interface DeregisterGraphRequestOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetCreateWorkerSessionCalled()Set to true if `CreateWorkerSession` was called for `session_handle`.StringgetGraphHandle()REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.org.nd4j.shade.protobuf.ByteStringgetGraphHandleBytes()REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.StringgetSessionHandle()The session_handle used when registering the graph.org.nd4j.shade.protobuf.ByteStringgetSessionHandleBytes()The session_handle used when registering the graph.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSessionHandle
String getSessionHandle()
The session_handle used when registering the graph. If session_handle is empty, a single global namespace is used.
string session_handle = 2;- Returns:
- The sessionHandle.
-
getSessionHandleBytes
org.nd4j.shade.protobuf.ByteString getSessionHandleBytes()
The session_handle used when registering the graph. If session_handle is empty, a single global namespace is used.
string session_handle = 2;- Returns:
- The bytes for sessionHandle.
-
getCreateWorkerSessionCalled
boolean getCreateWorkerSessionCalled()
Set to true if `CreateWorkerSession` was called for `session_handle`.
bool create_worker_session_called = 3;- Returns:
- The createWorkerSessionCalled.
-
getGraphHandle
String getGraphHandle()
REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.
string graph_handle = 1;- Returns:
- The graphHandle.
-
getGraphHandleBytes
org.nd4j.shade.protobuf.ByteString getGraphHandleBytes()
REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.
string graph_handle = 1;- Returns:
- The bytes for graphHandle.
-
-