예제 #1
0
        public ShardedSubscribeClientInput(IVertex vertex, int shardId, int numOtherOperatorShards, string endpointName) : base(shardId, numOtherOperatorShards, endpointName)
        {
            _vertex = (ShardedSubscribeClientOperator)vertex;

            _startReceivingFromOtherOperatorShards  = new CountdownEvent(_vertex._numShardsConnectingTo);
            _finishReceivingFromOtherOperatorShards = new CountdownEvent(_vertex._numShardsConnectingTo);
        }
예제 #2
0
 public ShardedSubscribeClientOutput(IVertex vertex, int shardId, int numOtherOperatorShards, string endpointName) : base(shardId, numOtherOperatorShards, endpointName)
 {
     _vertex = (ShardedSubscribeClientOperator)vertex;
 }