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

Packages that use cMsgClientInfo
org.jlab.coda.cMsg   
org.jlab.coda.cMsg.cMsgDomain.server   
org.jlab.coda.cMsg.subdomains   
 

Uses of cMsgClientInfo in org.jlab.coda.cMsg
 

Fields in org.jlab.coda.cMsg declared as cMsgClientInfo
 cMsgClientInfo cMsgNotifier.client
           
 

Methods in org.jlab.coda.cMsg that return types with arguments of type cMsgClientInfo
 java.util.HashSet<cMsgClientInfo> cMsgSubscription.getAllSubscribers()
          Gets the set containing all clients (regular and bridge) subscribed to this subject, type, and namespace.
 java.util.HashSet<cMsgClientInfo> cMsgSubscription.getClientSubscribers()
          Gets the set containing only regular clients subscribed to this subject, type, and namespace.
 java.util.HashMap<cMsgClientInfo,java.lang.Integer> cMsgSubscription.getSubAndGetters()
          Gets the hashmap containing all regular clients who have called cMsg.subscribeAndGet(java.lang.String, java.lang.String, int) with this subject, type, and namespace.
 

Methods in org.jlab.coda.cMsg with parameters of type cMsgClientInfo
 boolean cMsgSubscription.addClientSubscriber(cMsgClientInfo client)
          Adds a client to the set containing only regular clients subscribed to this subject, type, and namespace.
 void cMsgSubscription.addSubAndGetter(cMsgClientInfo client)
          Adds a client to the hashmap containing all regular clients who have called cMsg.subscribeAndGet(java.lang.String, java.lang.String, int).
 boolean cMsgSubscription.addSubscriber(cMsgClientInfo client)
          Adds a client to the set containing all clients (regular and bridge) subscribed to this subject, type, and namespace.
 boolean cMsgSubscription.containsSubscriber(cMsgClientInfo client)
          Is this a subscription of the given client (regular or bridge)? Used only on the server side.
 void cMsgSubdomainInterface.registerClient(cMsgClientInfo info)
          Method to register a domain client.
 void cMsgSubdomainAdapter.registerClient(cMsgClientInfo info)
          Method to register domain client.
 boolean cMsgSubscription.removeClientSubscriber(cMsgClientInfo client)
          Removes a client from the set containing only regular clients subscribed to this subject, type, and namespace.
 void cMsgSubscription.removeSubAndGetter(cMsgClientInfo client)
          Removes a client from the hashmap containing all regular clients who have called cMsg.subscribeAndGet(java.lang.String, java.lang.String, int).
 boolean cMsgSubscription.removeSubscriber(cMsgClientInfo client)
          Removes a client from the set containing all clients (regular and bridge) subscribed to this subject, type, and namespace.
 

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

Fields in org.jlab.coda.cMsg.cMsgDomain.server declared as cMsgClientInfo
 cMsgClientInfo cMsgDomainServer.info
          Object containing information about the client this object is connected to.
 

Methods in org.jlab.coda.cMsg.cMsgDomain.server with parameters of type cMsgClientInfo
 void cMsgMessageDeliverer.createClientConnection(cMsgClientInfo info)
          Creates a socket communication channel to a client.
 

Constructors in org.jlab.coda.cMsg.cMsgDomain.server with parameters of type cMsgClientInfo
cMsgDomainServer(cMsgNameServer nameServer, cMsgSubdomainInterface handler, cMsgClientInfo info, int startingPort, boolean timeOrdered)
          Constructor.
cMsgMessageDeliverer(cMsgClientInfo info)
          Create a message delivering object for use with one specific client.
cMsgMonitorClient(cMsgClientInfo info, cMsgDomainServer server, int debug)
          Constructor.
cMsgServerSubscribeInfo(java.lang.String subject, java.lang.String type, java.lang.String namespace, cMsgClientInfo info)
          Constructor used by cMsgDomainServer object basically for storage of subject, type, namespace and callbacks for subscribes.
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.
 

Uses of cMsgClientInfo in org.jlab.coda.cMsg.subdomains
 

Methods in org.jlab.coda.cMsg.subdomains with parameters of type cMsgClientInfo
 void LogFile.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void CA.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void cMsg.registerClient(cMsgClientInfo info)
          Method to register a domain client.
 void FileQueue.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void SmartSockets.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void Dummy.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void TcpServer.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void Queue.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void Database.registerClient(cMsgClientInfo info)
          Method to register domain client.
 void cMsg.registerServer(cMsgClientInfo info)
          Method to register cMsg domain server as client.