trait WebSocket extends Handler

A WebSocket handler.

Source
WebSocket.scala
Linear Supertypes
Handler, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WebSocket
  2. Handler
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def apply(request: RequestHeader): Future[Either[Result, Flow[, Message, _]]]

    Execute the WebSocket.

    Execute the WebSocket.

    The return value is either a result to reject the WebSocket with (or otherwise respond in a different way), or a flow to handle the WebSocket messages.