예제 #1
0
파일: Concat.cs 프로젝트: zyj10053/reactive
            internal ConcatNAsyncIterator(ConcatAsyncIterator <TSource> previousConcat, IAsyncEnumerable <TSource> next, int nextIndex)
            {
                Debug.Assert(nextIndex >= 2);

                _previousConcat = previousConcat;
                _next           = next;
                _nextIndex      = nextIndex;
            }
예제 #2
0
            internal ConcatNAsyncIterator(ConcatAsyncIterator <TSource> previousConcat, IAsyncEnumerable <TSource> next, int nextIndex)
            {
                Debug.Assert(previousConcat != null);
                Debug.Assert(next != null);
                Debug.Assert(nextIndex >= 2);

                this.previousConcat = previousConcat;
                this.next           = next;
                this.nextIndex      = nextIndex;
            }