Esempio n. 1
0
        public void RemoveTopicBroker(string topic, string name)
        {
            BrokerCircleTopicList entry = FindTopic(topic);

            if (entry != null)
            {
                entry.RemoveBroker(name);
                if (!entry.HasBrokers())
                {
                    table.Remove(entry);
                }
            }
        }