Ejemplo n.º 1
0
 public InMemoryPipelineFactory(InMemoryPipelineTransport transport, IPipelineNameConvention pipelineNameConvention)
 {
     this.transport = transport;
     this.pipelineNameConvention = pipelineNameConvention;
 }
Ejemplo n.º 2
0
 public InMemoryEndpoint(InMemoryPipelineTransport transport, string name, ICollection <string> watchMessageTypes)
 {
     this.transport    = transport;
     Name              = name;
     WatchMessageTypes = watchMessageTypes;
 }
Ejemplo n.º 3
0
 public InMemoryEndpointFactory(InMemoryPipelineTransport transport, IEndpointNameConvention endpointNameConvention)
 {
     this.transport = transport;
     this.endpointNameConvention = endpointNameConvention;
 }
Ejemplo n.º 4
0
 public InMemoryEndpoint(InMemoryPipelineTransport transport, string name, Dictionary <string, object> routingHeaders)
 {
     this.transport = transport;
     Name           = name;
     RoutingHeaders = routingHeaders;
 }