Interface CreateSessionResponseOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getGraphVersion()
      The initial version number for the graph, to be used in the next call to ExtendSession.
      java.lang.String getSessionHandle()
      The session handle to be used in subsequent calls for the created session.
      com.google.protobuf.ByteString getSessionHandleBytes()
      The session handle to be used in subsequent calls for the created session.
      • 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 to be used in subsequent calls for the created session.
         The client must arrange to call CloseSession with this returned
         session handle to close the session.
         
        string session_handle = 1;
        Returns:
        The sessionHandle.
      • getSessionHandleBytes

        com.google.protobuf.ByteString getSessionHandleBytes()
         The session handle to be used in subsequent calls for the created session.
         The client must arrange to call CloseSession with this returned
         session handle to close the session.
         
        string session_handle = 1;
        Returns:
        The bytes for sessionHandle.
      • getGraphVersion

        long getGraphVersion()
         The initial version number for the graph, to be used in the next call
         to ExtendSession.
         
        int64 graph_version = 2;
        Returns:
        The graphVersion.