Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.aendvari.hermes.broker.Message

Uses of Message in com.aendvari.hermes.broker
 

Fields in com.aendvari.hermes.broker declared as Message
protected  Message MessageRequestor.response
          The response received from the request.
protected  Message MessageLogger.LoggedMessage.message
          The published message.
 

Methods in com.aendvari.hermes.broker that return Message
 Message MessageRequestor.request(Message request)
          Publishes the specified message and returns the response.
 Message MessageLogger.LoggedMessage.getMessage()
          Returns the Message that was published.
 Message MessageBrokerConnection.createMessage()
          Creates a Message for this connection.
 

Methods in com.aendvari.hermes.broker with parameters of type Message
 void MessageTransaction.publish(MessageTopic topic, Message message)
          Publishes a message to the specific topic.
protected  void MessageTopic.publish(Message message)
          Publishes the message to this topic.
 Message MessageRequestor.request(Message request)
          Publishes the specified message and returns the response.
 void MessageRequestor.onMessage(Message message)
          Listens for a response.
protected  void MessageLogger.write(Message message)
          Writes a single message to the log.
 void MessageListener.onMessage(Message message)
          Receives a message from the MessageBroker.
 void MessageBrokerConnection.publish(MessageTopic topic, Message message)
          Publishes a message to the specific topic.
protected  void MessageBroker.publish(MessageTopic topic, Message message)
          Publishes a message to the specific topic.
 void MessageBatch.publish(MessageTopic topic, Message message)
          Publishes a message to the specific topic.
 

Constructors in com.aendvari.hermes.broker with parameters of type Message
MessageLogger.LoggedMessage(Message publishMessage)
          Creates a new LoggedMessage by copying information from the supplied Message.
Message(Message message)
          Constructs a Message as a copy of another Message.