Modifica

Condividi tramite


IReminderTable.ReadRows Method

Definition

Overloads

ReadRows(GrainId)

Reads the reminder table entries associated with the specified grain.

ReadRows(GrainReference)
ReadRows(UInt32, UInt32)

Returns all rows that have their GetUniformHashCode() in the range (begin, end]. If begin is greater or equal to end, returns all entries with hash greater begin or hash less or equal to end.

ReadRows(GrainId)

Reads the reminder table entries associated with the specified grain.

public System.Threading.Tasks.Task<Orleans.ReminderTableData> ReadRows(Orleans.Runtime.GrainId grainId);
abstract member ReadRows : Orleans.Runtime.GrainId -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
Public Function ReadRows (grainId As GrainId) As Task(Of ReminderTableData)

Parameters

grainId
GrainId

The grain ID.

Returns

The reminder table entries associated with the specified grain.

Applies to

ReadRows(GrainReference)

Source:
IReminderTable.cs
public System.Threading.Tasks.Task<Orleans.ReminderTableData> ReadRows(Orleans.Runtime.GrainReference key);
abstract member ReadRows : Orleans.Runtime.GrainReference -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
Public Function ReadRows (key As GrainReference) As Task(Of ReminderTableData)

Parameters

Returns

Applies to

ReadRows(UInt32, UInt32)

Source:
IReminderTable.cs

Returns all rows that have their GetUniformHashCode() in the range (begin, end]. If begin is greater or equal to end, returns all entries with hash greater begin or hash less or equal to end.

public System.Threading.Tasks.Task<Orleans.ReminderTableData> ReadRows(uint begin, uint end);
abstract member ReadRows : uint32 * uint32 -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
Public Function ReadRows (begin As UInteger, end As UInteger) As Task(Of ReminderTableData)

Parameters

begin
UInt32

The exclusive lower bound.

end
UInt32

The inclusive upper bound.

Returns

The reminder table entries which fall within the specified range.

Applies to