internal GroupedFlowable(K key, int bufferSize, GroupBySubscriber parent)
 {
     this.key    = key;
     this.parent = parent;
     this.queue  = new SpscArrayQueue <V>(bufferSize);
 }
Exemplo n.º 2
0
 internal GroupUnicast(GroupBySubscriber parent, K key, int prefetch)
 {
     this.parent = parent;
     this.key    = key;
     this.queue  = new SpscLinkedArrayQueue <V>(prefetch);
 }