Raven.Database.Storage.ReduceKeyAndBucket.ReduceKeyAndBucket C# (CSharp) Method

ReduceKeyAndBucket() public method

public ReduceKeyAndBucket ( int bucket, string reduceKey ) : System
bucket int
reduceKey string
return System
		public ReduceKeyAndBucket(int bucket, string reduceKey)
		{
			if (reduceKey == null) throw new ArgumentNullException("reduceKey");
			Bucket = bucket;
			ReduceKey = reduceKey;
		}