internal MultiplexerRegistrationDecorator(ChannelMultiplexer multiplexer, Type channelType)
 {
     _multiplexer = multiplexer;
     _channelType = channelType;
 }
 internal MultiplexerRegistrationDecorator(ChannelMultiplexer multiplexer, Type channelType, TransactionManager transactionManager)
 {
     _multiplexer       = multiplexer;
     _channelType       = channelType;
     TransactionManager = transactionManager;
 }
예제 #3
0
 internal ChannelConfigurator(ChannelMultiplexer multiplexer, Type channelType, TransactionManager transactionManager)
 {
     _multiplexer       = multiplexer;
     _channelType       = channelType;
     TransactionManager = transactionManager;
 }