akka.zeromq
Class ZeroMQ$

java.lang.Object
  extended by akka.zeromq.ZeroMQ$

public class ZeroMQ$
extends java.lang.Object

Java API for akka.zeromq


Field Summary
static ZeroMQ$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
ZeroMQ$()
           
 
Method Summary
 Affinity$ affinity()
          The message to ask a ZeroMQ socket for its affinity configuration.
 Backlog$ backlog()
          The message to ask a ZeroMQ socket for its backlog configuration.
 Closed$ closed()
          The message that is sent when an ZeroMQ socket disconnects.
 Connecting$ connecting()
          The message that is sent when an ZeroMQ socket connects.
 FileDescriptor$ fileDescriptor()
          The message to ask a ZeroMQ socket for its file descriptor configuration.
 Identity$ identity()
          The message to ask a ZeroMQ socket for its identity configuration.
 Linger$ linger()
          The message to ask a ZeroMQ socket for its linger configuration.
 MaxMsgSize$ maxMessageSize()
          The message to ask a ZeroMQ socket for its max message size configuration.
 MulticastHops$ multicastHops()
          The message to ask a ZeroMQ socket for its multicast hops configuration.
 MulticastLoop$ multicastLoop()
          The message to ask a ZeroMQ socket for its multicast loop configuration.
 Rate$ rate()
          The message to ask a ZeroMQ socket for its rate configuration.
 ReceiveBufferSize$ receiveBufferSize()
          The message to ask a ZeroMQ socket for its receive bufferSize configuration.
 ReceiveHighWatermark$ receiveHighWatermark()
          The message to ask a ZeroMQ socket for its receive high watermark configuration.
 ReconnectIVL$ reconnectIVL()
          The message to ask a ZeroMQ socket for its reconnect interval configuration.
 ReconnectIVLMax$ reconnectIVLMax()
          The message to ask a ZeroMQ socket for its max reconnect interval configuration.
 RecoveryInterval$ recoveryInterval()
          The message to ask a ZeroMQ socket for its recovery interval configuration.
 SendBufferSize$ sendBufferSize()
          The message to ask a ZeroMQ socket for its send buffer size configuration.
 SendHighWatermark$ sendHighWatermark()
          The message to ask a ZeroMQ socket for its send high watermark configuration.
 Swap$ swap()
          The message to ask a ZeroMQ socket for its swap configuration.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final ZeroMQ$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

ZeroMQ$

public ZeroMQ$()
Method Detail

connecting

public Connecting$ connecting()
The message that is sent when an ZeroMQ socket connects.

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

Returns:
the single instance of Connecting

closed

public Closed$ closed()
The message that is sent when an ZeroMQ socket disconnects.

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

Returns:
the single instance of Closed

affinity

public Affinity$ affinity()
The message to ask a ZeroMQ socket for its affinity configuration.

 socket.ask(affinity())
 

Returns:
the single instance of Affinity

backlog

public Backlog$ backlog()
The message to ask a ZeroMQ socket for its backlog configuration.

 socket.ask(backlog())
 

Returns:
the single instance of Backlog

fileDescriptor

public FileDescriptor$ fileDescriptor()
The message to ask a ZeroMQ socket for its file descriptor configuration.

 socket.ask(fileDescriptor())
 

Returns:
the single instance of FileDescriptor

identity

public Identity$ identity()
The message to ask a ZeroMQ socket for its identity configuration.

 socket.ask(identity())
 

Returns:
the single instance of Identity

linger

public Linger$ linger()
The message to ask a ZeroMQ socket for its linger configuration.

 socket.ask(linger())
 

Returns:
the single instance of Linger

maxMessageSize

public MaxMsgSize$ maxMessageSize()
The message to ask a ZeroMQ socket for its max message size configuration.

 socket.ask(maxMessageSize())
 

Returns:
the single instance of MaxMsgSize

multicastHops

public MulticastHops$ multicastHops()
The message to ask a ZeroMQ socket for its multicast hops configuration.

 socket.ask(multicastHops())
 

Returns:
the single instance of MulticastHops

multicastLoop

public MulticastLoop$ multicastLoop()
The message to ask a ZeroMQ socket for its multicast loop configuration.

 socket.ask(multicastLoop())
 

Returns:
the single instance of MulticastLoop

rate

public Rate$ rate()
The message to ask a ZeroMQ socket for its rate configuration.

 socket.ask(rate())
 

Returns:
the single instance of Rate

receiveBufferSize

public ReceiveBufferSize$ receiveBufferSize()
The message to ask a ZeroMQ socket for its receive bufferSize configuration.

 socket.ask(receiveBufferSize())
 

Returns:
the single instance of ReceiveBufferSize

receiveHighWatermark

public ReceiveHighWatermark$ receiveHighWatermark()
The message to ask a ZeroMQ socket for its receive high watermark configuration.

 socket.ask(receiveHighWatermark())
 

Returns:
the single instance of ReceiveHighWatermark

reconnectIVL

public ReconnectIVL$ reconnectIVL()
The message to ask a ZeroMQ socket for its reconnect interval configuration.

 socket.ask(reconnectIVL())
 

Returns:
the single instance of ReconnectIVL

reconnectIVLMax

public ReconnectIVLMax$ reconnectIVLMax()
The message to ask a ZeroMQ socket for its max reconnect interval configuration.

 socket.ask(reconnectIVLMax())
 

Returns:
the single instance of ReconnectIVLMax

recoveryInterval

public RecoveryInterval$ recoveryInterval()
The message to ask a ZeroMQ socket for its recovery interval configuration.

 socket.ask(recoveryInterval())
 

Returns:
the single instance of RecoveryInterval

sendBufferSize

public SendBufferSize$ sendBufferSize()
The message to ask a ZeroMQ socket for its send buffer size configuration.

 socket.ask(sendBufferSize())
 

Returns:
the single instance of SendBufferSize

sendHighWatermark

public SendHighWatermark$ sendHighWatermark()
The message to ask a ZeroMQ socket for its send high watermark configuration.

 socket.ask(sendHighWatermark())
 

Returns:
the single instance of SendHighWatermark

swap

public Swap$ swap()
The message to ask a ZeroMQ socket for its swap configuration.

 socket.ask(swap())
 

Returns:
the single instance of Swap