Uses of Class
org.jlab.coda.cMsg.cMsgMessage

Packages that use cMsgMessage
org.jlab.coda.cMsg   
org.jlab.coda.cMsg.apps   
 

Uses of cMsgMessage in org.jlab.coda.cMsg
 

Methods in org.jlab.coda.cMsg that return cMsgMessage
 cMsgMessage cMsgMessage.copy()
          Creates a complete copy of this message.
 cMsgMessage cMsgPayloadItem.getMessage()
          Gets the payload item as a cMsgMessage object.
 cMsgMessage[] cMsgPayloadItem.getMessageArray()
          Gets the payload item as an array of cMsgMessage objects.
 cMsgMessage cMsg.monitor(java.lang.String command)
          This method is a synchronous call to receive a message containing monitoring data which describes the state of the domain the user is connected to.
 cMsgMessage cMsgMessage.nullResponse()
          Creates a proper response message to this message which was sent by a client calling sendAndGet.
 cMsgMessage cMsgMessage.response()
          Creates a proper response message to this message which was sent by a client calling sendAndGet.
 cMsgMessage cMsg.sendAndGet(cMsgMessage message, int timeout)
          The message is sent as it would be in the cMsg.send(org.jlab.coda.cMsg.cMsgMessage) method.
 cMsgMessage cMsg.subscribeAndGet(java.lang.String subject, java.lang.String type, int timeout)
          This method is like a one-time subscribe.
 

Methods in org.jlab.coda.cMsg with parameters of type cMsgMessage
 void cMsgCallbackInterface.callback(cMsgMessage msg, java.lang.Object userObject)
          Callback method definition.
 void cMsgCallbackAdapter.callback(cMsgMessage msg, java.lang.Object userObject)
          Callback method definition.
static void cMsgMessage.copy(cMsgMessage src, cMsgMessage dst)
          This method turns the destination message into a complete copy of the source message.
 void cMsgMessage.copyPayload(cMsgMessage msg)
          Copy only the payload of the given message, overwriting the existing payload.
 void cMsgMessage.makeNullResponse(cMsgMessage msg)
          Converts existing message to null response of supplied message.
 void cMsgMessage.makeResponse(cMsgMessage msg)
          Converts existing message to response of supplied message.
 void cMsg.send(cMsgMessage message)
          Method to send a message to the domain for further distribution.
 cMsgMessage cMsg.sendAndGet(cMsgMessage message, int timeout)
          The message is sent as it would be in the cMsg.send(org.jlab.coda.cMsg.cMsgMessage) method.
 int cMsg.syncSend(cMsgMessage message, int timeout)
          Method to send a message to the domain for further distribution and wait for a response from the domain that got it.
 

Constructors in org.jlab.coda.cMsg with parameters of type cMsgMessage
cMsgMessage(cMsgMessage msg)
          The constructor which copies a given message.
cMsgPayloadItem(java.lang.String name, cMsgMessage msg)
          Construct a payload item from a cMsgMessage object.
cMsgPayloadItem(java.lang.String name, cMsgMessage[] msgs)
          Construct a payload item from an array of cMsgMessage objects.
 

Uses of cMsgMessage in org.jlab.coda.cMsg.apps
 

Methods in org.jlab.coda.cMsg.apps with parameters of type cMsgMessage
static void cMsgAlarmServer.logToDatabase(cMsgMessage msg)