コード例 #1
0
 public MediatorSendEndpoint(IReceiveEndpointConfiguration configuration, IReceivePipeDispatcher dispatcher, ILogContext logContext,
                             SendObservable sendObservers, IReceiveEndpointConfiguration sourceConfiguration, IReceivePipeDispatcher sourceDispatcher)
     : this(configuration, dispatcher, logContext, sendObservers)
 {
     _sourceAddress  = sourceConfiguration.InputAddress;
     _sourceEndpoint = new MediatorSendEndpoint(sourceConfiguration, sourceDispatcher, logContext, sendObservers);
 }
コード例 #2
0
 public MediatorPipe(MediatorSendEndpoint endpoint, IPipe <SendContext <TMessage> > pipe)
 {
     _endpoint = endpoint;
     _pipe     = pipe;
 }
コード例 #3
0
 public MediatorPipe(MediatorSendEndpoint endpoint)
 {
     _endpoint = endpoint;
     _pipe     = default;
 }