Beispiel #1
0
 public InMemRouterTransport(InMemRouter router, Address address, bool oneWay)
 {
     Consumer = new BufferBlock <MessageContainer>();
     Address  = address;
     OneWay   = oneWay;
     Router   = router;
     Timeout  = TimeSpan.FromMilliseconds(2000);
 }
Beispiel #2
0
 public TransportFactory(InMemRouter router)
 {
     this.router = router;
 }