yangjava commented on issue #4342:
URL: https://github.com/apache/rocketmq/issues/4342#issuecomment-1131780174

   public class MQClientInstance {
       private final static long LOCK_TIMEOUT_MILLIS = 3000;
       private final InternalLogger log = ClientLogger.getLog();
       private final ClientConfig clientConfig;
       private final int instanceIndex;
       private final String clientId;
       private final long bootTimestamp = System.currentTimeMillis();
       private final ConcurrentMap<String/* group */, MQProducerInner> 
producerTable = new ConcurrentHashMap<String, MQProducerInner>();
       private final ConcurrentMap<String/* group */, MQConsumerInner> 
consumerTable = new ConcurrentHashMap<String, MQConsumerInner>();
       private final ConcurrentMap<String/* group */, MQAdminExtInner> 
adminExtTable = new ConcurrentHashMap<String, MQAdminExtInner>();


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to