Exemplo n.º 1
0
 public EventStream(int maxStashSize)
 {
     _stash = new EventStash(maxStashSize);
 }
Exemplo n.º 2
0
 public EventStream(int maxStashSize)
 {
     _stash       = new EventStash(maxStashSize);
     _actionQueue = new ActionQueue(_actionQueueReallocateStashSize);
 }
Exemplo n.º 3
0
 public EventStream()
 {
     _stash = new EventStash(DefaultMaxStashSize);
 }
Exemplo n.º 4
0
 public EventStream()
 {
     _stash       = new EventStash(DefaultMaxStashSize);
     _actionQueue = new ActionQueue(_actionQueueReallocateStashSize);
 }