Ejemplo n.º 1
0
 public void Setup()
 {
     _pipedTwoChannels = new PipedTwoChannels();
     _typeSerializers = new TypeSerializers();
     _first = new DtoChannel(_pipedTwoChannels.First, _typeSerializers);
     _second = new DtoChannel(_pipedTwoChannels.Second, _typeSerializers);
 }
Ejemplo n.º 2
0
 public DtoChannelTest()
 {
     _pipedTwoChannels = new PipedTwoChannels();
     _typeSerializers  = new TypeSerializers();
     _first            = new DtoChannel(_pipedTwoChannels.First, _typeSerializers);
     _second           = new DtoChannel(_pipedTwoChannels.Second, _typeSerializers);
 }
Ejemplo n.º 3
0
 public DtoChannel(IChannel channel, ITypeSerializerMappingFactory mappingFactory)
 {
     _channel          = channel;
     _receivingMapping = mappingFactory.CreateMapping();
     _sendingMapping   = mappingFactory.CreateMapping();
     _channel.OnReceive.Subscribe(new Receiver(this));
 }