Class Session

Class representing a session.

Constructors

Properties

_capabilities: undefined | CapabilitiesRequest
_contexts: undefined | SubscriptionType
_events: undefined | SubscriptionType
_ws: BiDi

Accessors

  • get status(): Promise<SessionStatusResult>
  • Get status of session.

    Returns Promise<SessionStatusResult>

    Promise object represents the session status.

Methods

  • Ends the active session.

    Sends a command to the WebSocket to end the current session through the session.end method.

    Returns Promise<void>

    Promise that resolves if the session ends successfully, rejects if the WebSocket fails to send the command.

  • Create a new session

    Parameters

    • capabilities: CapabilitiesRequest

      The capabilities that the new session should have.

    Returns Promise<SessionNewResult>

    Promise object represents the newly created session.

    When unable to create a session.

  • Subscribes to specified events.

    Parameters

    • subscriptionRequest: SubscriptionRequest

    Returns Promise<void>

    Promise representing sending command for subscription.

  • Unsubscribes from specified events.

    Parameters

    • unsubscriptionType: SubscriptionRequest

    Returns Promise<void>

    Promise representing sending command for unsubscription.