akka.zeromq

ZeroMQ

Related Doc: package zeromq

object ZeroMQ

Java API for akka.zeromq

Source
ZeroMQ.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ZeroMQ
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. def affinity(): Affinity.type

    The message to ask a ZeroMQ socket for its affinity configuration.

    The message to ask a ZeroMQ socket for its affinity configuration.

    socket.ask(affinity())
    

    returns

    the single instance of Affinity

  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def backlog(): Backlog.type

    The message to ask a ZeroMQ socket for its backlog configuration.

    The message to ask a ZeroMQ socket for its backlog configuration.

    socket.ask(backlog())
    

    returns

    the single instance of Backlog

  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def closed(): Closed.type

    The message that is sent when an ZeroMQ socket disconnects.

    The message that is sent when an ZeroMQ socket disconnects.

    if (message == closed()) {
      // Socket disconnected
    }
    

    returns

    the single instance of Closed

  9. def connecting(): Connecting.type

    The message that is sent when an ZeroMQ socket connects.

    The message that is sent when an ZeroMQ socket connects.

    if (message == connecting()) {
      // Socket connected
    }
    

    returns

    the single instance of Connecting

  10. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  12. def fileDescriptor(): FileDescriptor.type

    The message to ask a ZeroMQ socket for its file descriptor configuration.

    The message to ask a ZeroMQ socket for its file descriptor configuration.

    socket.ask(fileDescriptor())
    

    returns

    the single instance of FileDescriptor

  13. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  16. def identity(): Identity.type

    The message to ask a ZeroMQ socket for its identity configuration.

    The message to ask a ZeroMQ socket for its identity configuration.

    socket.ask(identity())
    

    returns

    the single instance of Identity

  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. def linger(): Linger.type

    The message to ask a ZeroMQ socket for its linger configuration.

    The message to ask a ZeroMQ socket for its linger configuration.

    socket.ask(linger())
    

    returns

    the single instance of Linger

  19. def maxMessageSize(): MaxMsgSize.type

    The message to ask a ZeroMQ socket for its max message size configuration.

    The message to ask a ZeroMQ socket for its max message size configuration.

    socket.ask(maxMessageSize())
    

    returns

    the single instance of MaxMsgSize

  20. def multicastHops(): MulticastHops.type

    The message to ask a ZeroMQ socket for its multicast hops configuration.

    The message to ask a ZeroMQ socket for its multicast hops configuration.

    socket.ask(multicastHops())
    

    returns

    the single instance of MulticastHops

  21. def multicastLoop(): MulticastLoop.type

    The message to ask a ZeroMQ socket for its multicast loop configuration.

    The message to ask a ZeroMQ socket for its multicast loop configuration.

    socket.ask(multicastLoop())
    

    returns

    the single instance of MulticastLoop

  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def rate(): Rate.type

    The message to ask a ZeroMQ socket for its rate configuration.

    The message to ask a ZeroMQ socket for its rate configuration.

    socket.ask(rate())
    

    returns

    the single instance of Rate

  26. def receiveBufferSize(): ReceiveBufferSize.type

    The message to ask a ZeroMQ socket for its receive bufferSize configuration.

    The message to ask a ZeroMQ socket for its receive bufferSize configuration.

    socket.ask(receiveBufferSize())
    

    returns

    the single instance of ReceiveBufferSize

  27. def receiveHighWatermark(): ReceiveHighWatermark.type

    The message to ask a ZeroMQ socket for its receive high watermark configuration.

    The message to ask a ZeroMQ socket for its receive high watermark configuration.

    socket.ask(receiveHighWatermark())
    

    returns

    the single instance of ReceiveHighWatermark

  28. def reconnectIVL(): ReconnectIVL.type

    The message to ask a ZeroMQ socket for its reconnect interval configuration.

    The message to ask a ZeroMQ socket for its reconnect interval configuration.

    socket.ask(reconnectIVL())
    

    returns

    the single instance of ReconnectIVL

  29. def reconnectIVLMax(): ReconnectIVLMax.type

    The message to ask a ZeroMQ socket for its max reconnect interval configuration.

    The message to ask a ZeroMQ socket for its max reconnect interval configuration.

    socket.ask(reconnectIVLMax())
    

    returns

    the single instance of ReconnectIVLMax

  30. def recoveryInterval(): RecoveryInterval.type

    The message to ask a ZeroMQ socket for its recovery interval configuration.

    The message to ask a ZeroMQ socket for its recovery interval configuration.

    socket.ask(recoveryInterval())
    

    returns

    the single instance of RecoveryInterval

  31. def sendBufferSize(): SendBufferSize.type

    The message to ask a ZeroMQ socket for its send buffer size configuration.

    The message to ask a ZeroMQ socket for its send buffer size configuration.

    socket.ask(sendBufferSize())
    

    returns

    the single instance of SendBufferSize

  32. def sendHighWatermark(): SendHighWatermark.type

    The message to ask a ZeroMQ socket for its send high watermark configuration.

    The message to ask a ZeroMQ socket for its send high watermark configuration.

    socket.ask(sendHighWatermark())
    

    returns

    the single instance of SendHighWatermark

  33. def swap(): Swap.type

    The message to ask a ZeroMQ socket for its swap configuration.

    The message to ask a ZeroMQ socket for its swap configuration.

    socket.ask(swap())
    

    returns

    the single instance of Swap

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  35. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped