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

Packages that use cMsgCallbackAdapter
org.jlab.coda.cMsg.cMsgDomain.server   
 

Uses of cMsgCallbackAdapter in org.jlab.coda.cMsg.cMsgDomain.server
 

Methods in org.jlab.coda.cMsg.cMsgDomain.server that return cMsgCallbackAdapter
static cMsgCallbackAdapter cMsgServerBridge.getSendAndGetCallback(int id, int sysMsgId)
          Get a callback for a sendAndGet call.
static cMsgCallbackAdapter cMsgServerBridge.getSubAndGetCallback()
          This method returns a reference to the one callback needed for subscribes and subAndGets to propogate messages back to original client.
 

Methods in org.jlab.coda.cMsg.cMsgDomain.server that return types with arguments of type cMsgCallbackAdapter
 java.util.HashMap<java.lang.Integer,cMsgCallbackAdapter> cMsgServerSubscribeInfo.getSubAndGetters()
          Gets the HashMap containing the subscribeAndGet id generated by the originating client as the key (receiverSubscribeId which identifies the particular subscribeAndGet call in question), and the value which is the callback object of that subscribeAndGet.
 

Methods in org.jlab.coda.cMsg.cMsgDomain.server with parameters of type cMsgCallbackAdapter
 void cMsgServerSubscribeInfo.addSubAndGetter(int id, cMsgCallbackAdapter cb)
          Adds an entry to a hashmap with the subscribeAndGet id as the key and the callback object as the value.
 

Constructors in org.jlab.coda.cMsg.cMsgDomain.server with parameters of type cMsgCallbackAdapter
cMsgServerSubscribeAndGetter(cMsgNameServer nameServer, cMsgNotifier notifier, cMsgCallbackAdapter cb, java.util.Set subscriptions, cMsgServerSubscribeInfo sub)
          Constructor.
cMsgServerSubscribeInfo(java.lang.String subject, java.lang.String type, java.lang.String namespace, cMsgClientInfo info, int id, cMsgCallbackAdapter cb)
          Constructor used by cMsgDomainServer object basically for storage of subject, type, namespace and callbacks for subAndGets.