public ConditionalResponseActionBuilder(RequestResponseScope scope, Func <T, bool> accept)
 {
     _scope  = scope;
     _accept = accept;
 }
示例#2
0
 public ResponseActionBuilder(RequestResponseScope scope)
 {
     _scope = scope;
 }
示例#3
0
 public ConditionalResponseAction(RequestResponseScope scope, Func <T, bool> accept, Action <T> action)
 {
     _scope          = scope;
     _accept         = accept;
     _responseAction = action;
 }
示例#4
0
 public CorrelatedResponseActionBuilder(RequestResponseScope scope, K correlationId)
 {
     _scope         = scope;
     _correlationId = correlationId;
 }
 public CorrelatedResponseAction(RequestResponseScope scope, K correlationId, Action <T> responseAction)
 {
     _scope          = scope;
     _correlationId  = correlationId;
     _responseAction = responseAction;
 }
示例#6
0
 public ResponseAction(RequestResponseScope scope, Action <T> responseAction)
 {
     _scope          = scope;
     _responseAction = responseAction;
 }