using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bro.Common.PubSub { public class PubSubCenter : SimplePubSubCenter { private static PubSubCenter inst = null; /// /// Get Instance /// /// public static PubSubCenter GetInstance() { if (null == inst) { inst = new PubSubCenter(); } return inst; } private PubSubCenter() { } } }