io.backchat.hookup

HookupClient

object HookupClient extends AnyRef

See also

HookupClient

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. HookupClient
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. class PingPongHandler extends IdleStateAwareChannelHandler

    Handler to send pings when no data has been sent or received within the timeout.

  2. type Receive = PartialFunction[InboundMessage, Unit]

    The websocket inbound message handler

  3. class WebSocketClientHostHandler extends SimpleChannelHandler

    This handler takes care of translating websocket frames into InboundMessage instances

  4. class WebSocketException extends IOException

    A HookupClient related exception

  5. class WebSocketHttpResponseDecoder extends HttpResponseDecoder

    Fix bug in standard HttpResponseDecoder for web socket clients.

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def apply (context: HookupClientConfig)(recv: Receive): HookupClient

    A factory method to create a default websocket implementation that uses the specified recv as message handler.

    A factory method to create a default websocket implementation that uses the specified recv as message handler. This probably not the most useful factory method ever unless you can keep the client around somehow too.

    context

    The configuration for the websocket client

    recv

    The message handler

    returns

    a DefaultHookupClient

  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def create (context: HookupClientConfig): JavaHookupClient

    A factory method for the java api.

    A factory method for the java api. It creates a JavaHookupClient which is a websocket with added helpers for the java language, so they too can enjoy this library.

    context

    The configuration for the websocket client

    returns

    a JavaHookupClient

  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. implicit lazy val executionContext : ExecutionContext with ExecutorService

    The default execution context for the websocket library.

    The default execution context for the websocket library. it uses a ForkJoinPool as underlying threadpool.

    Attributes
    implicit
  13. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  15. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  16. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  17. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  18. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  19. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  20. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  21. def toString (): String

    Definition Classes
    AnyRef → Any
  22. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  23. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  24. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any