akka.zeromq
Class ZMQMessage$

java.lang.Object
  extended by akka.zeromq.ZMQMessage$
All Implemented Interfaces:
java.io.Serializable

public class ZMQMessage$
extends java.lang.Object
implements scala.Serializable

See Also:
Serialized Form

Field Summary
static ZMQMessage$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
ZMQMessage$()
           
 
Method Summary
 ZMQMessage apply(scala.collection.Seq<ByteString> frames)
          Scala API
<T> ZMQMessage
apply(scala.collection.Seq<T> frames, scala.Function1<T,ByteString> converter)
           
 ZMQMessage empty()
           
 ZMQMessage withFrames(ByteString... frames)
          Java API: create a message from the given frames
 ZMQMessage withFrames(scala.collection.Seq<ByteString> frames)
          Java API: create a message from the given frames
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

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

Constructor Detail

ZMQMessage$

public ZMQMessage$()
Method Detail

withFrames

public ZMQMessage withFrames(ByteString... frames)
Java API: create a message from the given frames

Parameters:
frames - the frames of the returned ZMQMessage
Returns:
a ZMQMessage with the given frames

empty

public ZMQMessage empty()

apply

public ZMQMessage apply(scala.collection.Seq<ByteString> frames)
Scala API

Parameters:
frames - the frames of the returned ZMQMessage
Returns:
a ZMQMessage with the given frames

withFrames

public ZMQMessage withFrames(scala.collection.Seq<ByteString> frames)
Java API: create a message from the given frames

Parameters:
frames - the frames of the returned ZMQMessage
Returns:
a ZMQMessage with the given frames

apply

public <T> ZMQMessage apply(scala.collection.Seq<T> frames,
                            scala.Function1<T,ByteString> converter)