Interface PartialRunSetupRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getFeed​(int index)
      Tensors to be fed in future steps.
      com.google.protobuf.ByteString getFeedBytes​(int index)
      Tensors to be fed in future steps.
      int getFeedCount()
      Tensors to be fed in future steps.
      java.util.List<java.lang.String> getFeedList()
      Tensors to be fed in future steps.
      java.lang.String getFetch​(int index)
      Fetches.
      com.google.protobuf.ByteString getFetchBytes​(int index)
      Fetches.
      int getFetchCount()
      Fetches.
      java.util.List<java.lang.String> getFetchList()
      Fetches.
      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.
      java.lang.String getTarget​(int index)
      Target Nodes.
      com.google.protobuf.ByteString getTargetBytes​(int index)
      Target Nodes.
      int getTargetCount()
      Target Nodes.
      java.util.List<java.lang.String> getTargetList()
      Target Nodes.
      • 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.
      • getFeedList

        java.util.List<java.lang.String> getFeedList()
         Tensors to be fed in future steps.
         
        repeated string feed = 2;
        Returns:
        A list containing the feed.
      • getFeedCount

        int getFeedCount()
         Tensors to be fed in future steps.
         
        repeated string feed = 2;
        Returns:
        The count of feed.
      • getFeed

        java.lang.String getFeed​(int index)
         Tensors to be fed in future steps.
         
        repeated string feed = 2;
        Parameters:
        index - The index of the element to return.
        Returns:
        The feed at the given index.
      • getFeedBytes

        com.google.protobuf.ByteString getFeedBytes​(int index)
         Tensors to be fed in future steps.
         
        repeated string feed = 2;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the feed at the given index.
      • getFetchList

        java.util.List<java.lang.String> getFetchList()
         Fetches. A list of tensor names. The caller expects a tensor to be returned
         for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
         RunStepRequests. The order of specified fetches does not change the
         execution order.
         
        repeated string fetch = 3;
        Returns:
        A list containing the fetch.
      • getFetchCount

        int getFetchCount()
         Fetches. A list of tensor names. The caller expects a tensor to be returned
         for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
         RunStepRequests. The order of specified fetches does not change the
         execution order.
         
        repeated string fetch = 3;
        Returns:
        The count of fetch.
      • getFetch

        java.lang.String getFetch​(int index)
         Fetches. A list of tensor names. The caller expects a tensor to be returned
         for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
         RunStepRequests. The order of specified fetches does not change the
         execution order.
         
        repeated string fetch = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The fetch at the given index.
      • getFetchBytes

        com.google.protobuf.ByteString getFetchBytes​(int index)
         Fetches. A list of tensor names. The caller expects a tensor to be returned
         for each fetch[i] (see RunStepResponse.tensor), for corresponding partial
         RunStepRequests. The order of specified fetches does not change the
         execution order.
         
        repeated string fetch = 3;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the fetch at the given index.
      • getTargetList

        java.util.List<java.lang.String> getTargetList()
         Target Nodes. A list of node names. The named nodes will be run in future
         steps, but their outputs will not be fetched.
         
        repeated string target = 4;
        Returns:
        A list containing the target.
      • getTargetCount

        int getTargetCount()
         Target Nodes. A list of node names. The named nodes will be run in future
         steps, but their outputs will not be fetched.
         
        repeated string target = 4;
        Returns:
        The count of target.
      • getTarget

        java.lang.String getTarget​(int index)
         Target Nodes. A list of node names. The named nodes will be run in future
         steps, but their outputs will not be fetched.
         
        repeated string target = 4;
        Parameters:
        index - The index of the element to return.
        Returns:
        The target at the given index.
      • getTargetBytes

        com.google.protobuf.ByteString getTargetBytes​(int index)
         Target Nodes. A list of node names. The named nodes will be run in future
         steps, but their outputs will not be fetched.
         
        repeated string target = 4;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the target at the given index.
      • getRequestId

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