public IdSvr4ConditionBuilder(IEventMonitorSink eventMonitorSink)
 {
     _eventMonitorSink = eventMonitorSink;
 }
 public EventOccurredConditionSpecification(IEventMonitorSink eventMonitorSink, Func <TEvent, bool> condition) : base()
 {
     _eventMonitorSink = eventMonitorSink;
     _condition        = condition;
     Description       = typeof(TEvent).Name;
 }
Exemple #3
0
 public IdSvr4Component(IStore store, IEventMonitorSink eventMonitor, IIdSvr4Client client)
 {
     _store        = store;
     _eventMonitor = eventMonitor;
     _client       = client;
 }