RangeFactory.CreateRange Method

Definition

Overloads

CreateRange(List<IRingRange>)

Creates a new IRingRange representing the union of all provided ranges.

CreateRange(UInt32, UInt32)

Creates a new IRingRange representing the values between the exclusive lower bound, begin, and the inclusive upper bound, end.

CreateRange(List<IRingRange>)

Source:
RingRange.cs

Creates a new IRingRange representing the union of all provided ranges.

public static Orleans.Runtime.IRingRange CreateRange (System.Collections.Generic.List<Orleans.Runtime.IRingRange> inRanges);
static member CreateRange : System.Collections.Generic.List<Orleans.Runtime.IRingRange> -> Orleans.Runtime.IRingRange
Public Shared Function CreateRange (inRanges As List(Of IRingRange)) As IRingRange

Parameters

inRanges
List<IRingRange>

The ranges.

Returns

A new IRingRange representing the union of all provided ranges.

Applies to

CreateRange(UInt32, UInt32)

Source:
RingRange.cs

Creates a new IRingRange representing the values between the exclusive lower bound, begin, and the inclusive upper bound, end.

public static Orleans.Runtime.IRingRange CreateRange (uint begin, uint end);
static member CreateRange : uint32 * uint32 -> Orleans.Runtime.IRingRange
Public Shared Function CreateRange (begin As UInteger, end As UInteger) As IRingRange

Parameters

begin
UInt32

The exclusive lower bound.

end
UInt32

The inclusive upper bound.

Returns

A new IRingRange representing the values between the exclusive lower bound, begin, and the inclusive upper bound, end.

Applies to