public static MPProtectedChannel GetChannel(string channelName, int waitTime) { return(MPChannelsPool.GetChannel(channelName, waitTime)); }
public static void ReleaseChannel(MPProtectedChannel channel) { MPChannelsPool.ReleaseChannel(channel); }
public static void Init(string[] channelsDescription) { MPChannelSettings.Init(channelsDescription); MPChannelsPool.Start(); System.Threading.ThreadPool.QueueUserWorkItem(_cycleChannelsUp); }