Skip to main content

ApplicationState <StateT>

ApplicationState allows an application to recover its state StateT from before the Twinfinity session was established.

Index

Methods

deserialize

  • deserialize(serializedState: string): StateT
  • A function that is able to deserialize the serialized value output by serialize into a StateT


    Parameters

    • serializedState: string

    Returns StateT

getCurrentState

  • getCurrentState(): Promise<StateT>

serialize

  • serialize(state: StateT): string
  • A function that serializes StateT to a string such that it can be deserialized by deserialize


    Parameters

    • state: StateT

    Returns string

Page Options