npantarhei.runtime.patterns.AutoResetJoin.Get_bucket C# (CSharp) Method

Get_bucket() private method

private Get_bucket ( System.Guid correlationId ) : JoinBucket
correlationId System.Guid
return JoinBucket
        private JoinBucket Get_bucket(Guid correlationId)
        {
            JoinBucket bucket = null;
            if (!_buckets.TryGetValue(correlationId, out bucket))
            {
                bucket = new JoinBucket(_numberOfInputs);
                _buckets[correlationId] = bucket;
            }
            return bucket;
        }