Class GetSessionOptionsResult

java.lang.Object
org.apache.arrow.flight.GetSessionOptionsResult

public class GetSessionOptionsResult extends Object
A request to view the currently-set options for the current server session.
  • Constructor Details

  • Method Details

    • getSessionOptions

      public Map<String,SessionOptionValue> getSessionOptions()
      Get the session options map contained in the request.
      Returns:
      An immutable view of the session options map.
    • serialize

      public ByteBuffer serialize()
      Get the serialized form of this protocol message.

      Intended to help interoperability by allowing non-Flight services to still return Flight types.

    • deserialize

      public static GetSessionOptionsResult deserialize(ByteBuffer serialized) throws IOException
      Parse the serialized form of this protocol message.

      Intended to help interoperability by allowing Flight clients to obtain stream info from non-Flight services.

      Parameters:
      serialized - The serialized form of the message, as returned by serialize().
      Returns:
      The deserialized message.
      Throws:
      IOException - if the serialized form is invalid.