示例#1
0
        public ShardedShuffleInput(IVertex vertex, int shardId, int numOtherOperatorShards, string endpointName) : base(shardId, numOtherOperatorShards, endpointName)
        {
            _vertex = (ShardedShuffleOperator)vertex;

            _applyMergingOnAllInputs    = new CountdownEvent(numOtherOperatorShards);
            _finishMergingFromAllInputs = new CountdownEvent(1);
        }
示例#2
0
 public ShardedShuffleSecondaryInput(IVertex vertex, int shardId, int numOtherOperatorShards, string endpointName) : base(shardId, numOtherOperatorShards, endpointName)
 {
     _vertex = (ShardedShuffleOperator)vertex;
 }