Cgw.Channel.MonitorChannelManager.MonitorChannelManager C# (CSharp) Method

MonitorChannelManager() public method

构造函数
public MonitorChannelManager ( IFrameCallback iFrameHandler, SotErrorReport errReportHandler ) : System
iFrameHandler IFrameCallback
errReportHandler SotErrorReport
return System
        public MonitorChannelManager(IFrameCallback iFrameHandler, SotErrorReport errReportHandler)
        {
            this.monitorChannelDic = new Dictionary<string, MonitorChannel>();
            this.channelDicLocker = new ReaderWriterLockSlim();
            this.softTerminalAdapter = new SoftTerminalAdapter();
            this.makeIFrameCallback = iFrameHandler;
            this.errReportCallback = errReportHandler;
        }