コード例 #1
0
ファイル: Bus.cs プロジェクト: yonglehou/Symbiote
 public Bus(
     IChannelManager channels,
     IChannelIndex channelIndex,
     ISubscriptionManager subscriptions)
 {
     Channels      = channels;
     ChannelIndex  = channelIndex;
     Subscriptions = subscriptions;
 }
コード例 #2
0
ファイル: ChannelManager.cs プロジェクト: cmgator/Symbiote
 public ChannelManager( IChannelIndex channelIndex )
 {
     Index = channelIndex;
     Channels = new ConcurrentDictionary<string, IChannel>();
     ChannelFactories = new ConcurrentDictionary<Type, IChannelFactory>();
 }
コード例 #3
0
ファイル: ChannelManager.cs プロジェクト: yonglehou/Symbiote
 public ChannelManager(IChannelIndex channelIndex)
 {
     Index            = channelIndex;
     Channels         = new ConcurrentDictionary <string, IChannel>();
     ChannelFactories = new ConcurrentDictionary <Type, IChannelFactory>();
 }