Esempio n. 1
0
        public object Clone()
        {
            TopicStats topicStat = new TopicStats();

            topicStat._topicName           = _topicName;
            topicStat._currentMessageCount = _currentMessageCount;
            topicStat._subscriberCount     = _subscriberCount;
            topicStat._publisherCount      = _publisherCount;
            return(topicStat);
        }
Esempio n. 2
0
        public object Clone()
        {
            TopicStats topicStat = new TopicStats();

            topicStat._topicName                = _topicName;
            topicStat._currentMessageCount      = _currentMessageCount;
            topicStat._subscriberCount          = _subscriberCount;
            topicStat._publisherCount           = _publisherCount;
            topicStat._durableSharedSubCount    = _durableSharedSubCount;
            topicStat._durableExclusiveSubCount = _durableExclusiveSubCount;
            topicStat._nonDurableSubCount       = _nonDurableSubCount;
            return(topicStat);
        }