Packages

package fsm

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class NextWsState(state: WsState, afterStateUpdate: () ⇒ Unit = NextWsState.DoNothing) extends Product with Serializable
    Annotations
    @SuppressWarnings()
  2. final case class SendBinaryFrame(actionName: String, message: Array[Byte], checkSequences: List[WsFrameCheckSequence[WsBinaryFrameCheck]], next: Action) extends SendFrame with Product with Serializable
    Annotations
    @SuppressWarnings()
  3. sealed trait SendFrame extends AnyRef
  4. final case class SendTextFrame(actionName: String, message: String, checkSequences: List[WsFrameCheckSequence[WsTextFrameCheck]], next: Action) extends SendFrame with Product with Serializable
  5. final class WsClosedState extends WsState
  6. final class WsClosingState extends WsState with StrictLogging
  7. final case class WsConnectingState(fsm: WsFsm, session: Session, next: Either[Action, SendFrame], connectStart: Long, remainingTries: Int) extends WsState with StrictLogging with Product with Serializable
  8. final class WsCrashedState extends WsState with StrictLogging
  9. class WsFsm extends StrictLogging
  10. final class WsIdleState extends WsState with StrictLogging
  11. final class WsInitState extends WsState
  12. final case class WsPerformingCheckState(fsm: WsFsm, webSocket: WebSocket, currentCheck: WsFrameCheck, remainingChecks: List[WsFrameCheck], checkSequenceStart: Long, remainingCheckSequences: List[WsFrameCheckSequence[WsFrameCheck]], session: Session, next: Either[Action, SendFrame]) extends WsState with StrictLogging with Product with Serializable
  13. abstract class WsState extends StrictLogging

Value Members

  1. object NextWsState extends Serializable
  2. object WsConnectingState extends Serializable

Ungrouped