Package org.tensorflow.distruntime
Interface MakeCallableRequestOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MakeCallableRequest,MakeCallableRequest.Builder
public interface MakeCallableRequestOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallableOptionsgetOptions()Options that define the behavior of the created callable.CallableOptionsOrBuildergetOptionsOrBuilder()Options that define the behavior of the created callable.StringgetSessionHandle()REQUIRED: session_handle must be returned by a CreateSession call to the same master service.org.nd4j.shade.protobuf.ByteStringgetSessionHandleBytes()REQUIRED: session_handle must be returned by a CreateSession call to the same master service.booleanhasOptions()Options that define the behavior of the created callable.-
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()
REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
string session_handle = 1;- Returns:
- The sessionHandle.
-
getSessionHandleBytes
org.nd4j.shade.protobuf.ByteString getSessionHandleBytes()
REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
string session_handle = 1;- Returns:
- The bytes for sessionHandle.
-
hasOptions
boolean hasOptions()
Options that define the behavior of the created callable.
.tensorflow.CallableOptions options = 2;- Returns:
- Whether the options field is set.
-
getOptions
CallableOptions getOptions()
Options that define the behavior of the created callable.
.tensorflow.CallableOptions options = 2;- Returns:
- The options.
-
getOptionsOrBuilder
CallableOptionsOrBuilder getOptionsOrBuilder()
Options that define the behavior of the created callable.
.tensorflow.CallableOptions options = 2;
-
-