示例#1
0
 public ManyToOneConcurrentArrayQueuePlugin()
 {
     configuration = ManyToOneConcurrentArrayQueuePluginConfiguration.Define();
     dispatchers   = new ConcurrentDictionary <int, ManyToOneConcurrentArrayQueueDispatcher>(16, 1);
 }
示例#2
0
 private ManyToOneConcurrentArrayQueuePlugin(IPluginConfiguration configuration)
 {
     this.configuration = (ManyToOneConcurrentArrayQueuePluginConfiguration)configuration;
     dispatchers        = new ConcurrentDictionary <int, ManyToOneConcurrentArrayQueueDispatcher>(16, 1);
 }
 public ManyToOneConcurrentArrayQueuePlugin(string?name = null)
 {
     _configuration = ManyToOneConcurrentArrayQueuePluginConfiguration.Define();
     _dispatchers   = new ConcurrentDictionary <int, ManyToOneConcurrentArrayQueueDispatcher>(16, 1);
 }