Interface DeregisterGraphRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getCreateWorkerSessionCalled()
      Set to true if `CreateWorkerSession` was called for `session_handle`.
      java.lang.String getGraphHandle()
      REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.
      com.google.protobuf.ByteString getGraphHandleBytes()
      REQUIRED: graph_handle must be returned by a RegisterGraph call to the same WorkerService.
      java.lang.String getSessionHandle()
      The session_handle used when registering the graph.
      com.google.protobuf.ByteString getSessionHandleBytes()
      The session_handle used when registering the graph.
      • 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()
         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

        com.google.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

        java.lang.String getGraphHandle()
         REQUIRED: graph_handle must be returned by a RegisterGraph call
         to the same WorkerService.
         
        string graph_handle = 1;
        Returns:
        The graphHandle.
      • getGraphHandleBytes

        com.google.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.