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