次の方法で共有


RangeFactory.CreateRange メソッド

定義

オーバーロード

CreateRange(List<IRingRange>)

指定されたすべての範囲の和集合を表す新しい IRingRange を作成します。

CreateRange(UInt32, UInt32)

排他的な下限 begin、、および包括的な上限endの間の値を表す新しい IRingRange を作成します。

CreateRange(List<IRingRange>)

ソース:
RingRange.cs

指定されたすべての範囲の和集合を表す新しい IRingRange を作成します。

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

パラメーター

inRanges
List<IRingRange>

範囲。

戻り値

指定されたすべての範囲の和集合を表す新しい IRingRange

適用対象

CreateRange(UInt32, UInt32)

ソース:
RingRange.cs

排他的な下限 begin、、および包括的な上限endの間の値を表す新しい IRingRange を作成します。

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

パラメーター

begin
UInt32

排他的な下限。

end
UInt32

包括的な上限。

戻り値

排他的な下限 begin、、および包括的な上限endの間の値を表す新しい IRingRange

適用対象