DynamoDBReminderTable.ReadRows Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReadRows(GrainReference) |
Read one row from the remider table |
ReadRows(UInt32, UInt32) |
Reads reminder table data for a given hash range. |
ReadRows(GrainReference)
Read one row from the remider table
public System.Threading.Tasks.Task<Orleans.ReminderTableData> ReadRows (Orleans.Runtime.GrainReference grainRef);
abstract member ReadRows : Orleans.Runtime.GrainReference -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
override this.ReadRows : Orleans.Runtime.GrainReference -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
Public Function ReadRows (grainRef As GrainReference) As Task(Of ReminderTableData)
Parameters
- grainRef
- GrainReference
grain ref to locate the row
Returns
Return the RemiderTableData if the rows were read successfully
Implements
Applies to
ReadRows(UInt32, UInt32)
Reads reminder table data for a given hash range.
public System.Threading.Tasks.Task<Orleans.ReminderTableData> ReadRows (uint beginHash, uint endHash);
abstract member ReadRows : uint32 * uint32 -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
override this.ReadRows : uint32 * uint32 -> System.Threading.Tasks.Task<Orleans.ReminderTableData>
Public Function ReadRows (beginHash As UInteger, endHash As UInteger) As Task(Of ReminderTableData)
Parameters
- beginHash
- UInt32
- endHash
- UInt32
Returns
Return the RemiderTableData if the rows were read successfully