Ejemplo n.º 1
0
 public EventActionNode(
     TEvent @event,
     TParam param)
 {
     this.Event = @event;
     this.Param = param;
 }
Ejemplo n.º 2
0
 public Sink(TParam parent, IObserver <IGroupedSubscribable <TKey, TElement> > observer, IEqualityComparer <TKey> comparer)
     : base(parent, observer)
 {
     // TODO: allocate upon start or recovery and use known capacity (if any) - also do this in Window
     _groups  = new Dictionary <TKey, Entry>(comparer);
     _tunnels = new Dictionary <Uri, TKey>();
 }
Ejemplo n.º 3
0
 public void Start(TParam input)
 {
     info.Input = input;
     info.Start.Set();
 }
Ejemplo n.º 4
0
 public OneSink(TParam parent, IObserver <ISubscribable <TSource> > observer)
     : base(parent, observer)
 {
 }