Interface MakeCallableRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    MakeCallableRequest, MakeCallableRequest.Builder

    public interface MakeCallableRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      CallableOptions getOptions()
      Options that define the behavior of the created callable.
      CallableOptionsOrBuilder getOptionsOrBuilder()
      Options that define the behavior of the created callable.
      long getRequestId()
      Unique identifier for this request.
      java.lang.String getSessionHandle()
      REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
      com.google.protobuf.ByteString getSessionHandleBytes()
      REQUIRED: session_handle must be returned by a CreateSession call to the same master service.
      boolean hasOptions()
      Options that define the behavior of the created callable.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getSessionHandle

        java.lang.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

        com.google.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.
         
        .org.platanios.tensorflow.proto.CallableOptions options = 2;
        Returns:
        Whether the options field is set.
      • getOptions

        CallableOptions getOptions()
         Options that define the behavior of the created callable.
         
        .org.platanios.tensorflow.proto.CallableOptions options = 2;
        Returns:
        The options.
      • getOptionsOrBuilder

        CallableOptionsOrBuilder getOptionsOrBuilder()
         Options that define the behavior of the created callable.
         
        .org.platanios.tensorflow.proto.CallableOptions options = 2;
      • getRequestId

        long getRequestId()
         Unique identifier for this request. Every MakeCallableRequest must
         have a unique request_id, and retried MakeCallableRequest must have
         the same request_id. If request_id is zero, retry detection is disabled.
         
        int64 request_id = 3;
        Returns:
        The requestId.