Uses of Interface
net.metanotion.util.Message

Packages that use Message
net.metanotion.rpc   
net.metanotion.util   
net.metanotion.util.observers   
 

Uses of Message in net.metanotion.rpc
 

Classes in net.metanotion.rpc that implement Message
 class OOBExceptionMessage
           
 class OOBIdleMessage
           
 

Methods in net.metanotion.rpc that return Message
 Message SpecialMessages.exception(java.lang.Throwable cause)
           
 Message SimpleSpecialMessagesFactory.exception(java.lang.Throwable cause)
           
 Message SpecialMessages.idle(IdleStatus status)
           
 Message SimpleSpecialMessagesFactory.idle(IdleStatus status)
           
 

Methods in net.metanotion.rpc with parameters of type Message
 void MINAMessageOutputStream.write(Message m)
           
 

Method parameters in net.metanotion.rpc with type arguments of type Message
 I EncoderFactory.sender(ObjectOutputStream<Message> out)
           
 

Constructor parameters in net.metanotion.rpc with type arguments of type Message
RPCMultiplexer(ObjectOutputStream<Message> session)
           
SenderFactory(ObjectOutputStream<Message> session, java.util.List<java.lang.String> protocols)
           
 

Uses of Message in net.metanotion.util
 

Methods in net.metanotion.util that return Message
 Message<I> Dispatcher.dispatch(D data)
           
 

Uses of Message in net.metanotion.util.observers
 

Classes in net.metanotion.util.observers with type parameters of type Message
 class ConcurrentMessageBusManager<M extends Message>
          An MessageBusManager that uses an ExecutorService for concurrent, asynchronous dispatching of events.
 class ConcurrentObserverManager<O,M extends Message<O>>
          An ObserverManager that uses an ExecutorService for concurrent, asynchronous dispatching of events.
 interface MessageBusManager<M extends Message>
          This interface represents a common way to bulk send messages to any registered observers.
 interface ObserverManager<O,M extends Message<O>>
          This interface represents a common way to bulk send messages to any registered observers.
 class SimpleObserverManager<O,M extends Message<O>>
           
 

Methods in net.metanotion.util.observers with parameters of type Message
 void ChannelBusMessageOutputStream.write(Message m)