Example #1
0
 public Trigger(IEventSocket eventSocket, ICondition condition = null)
 {
     EventSocket = eventSocket;
     _condition  = condition;
 }
Example #2
0
 public EventWatcher GetWatcher(IEventSocket socket)
 {
     _eventWatchers.TryGetValue(socket.ToString(), out var watcher);
     return(watcher);
 }