Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 578 Bytes

NT_SCHEDULE_ROW_ON_TIMER.md

File metadata and controls

27 lines (17 loc) · 578 Bytes
uid
NT_SCHEDULE_ROW_ON_TIMER

NT_SCHEDULE_ROW_ON_TIMER (229)

Allows the triggering of a specific row to be run by the multi-threaded timer outside its normal behavior.

string rowKey = "Row 1";
int timerID = 1;

protocol.NotifyProtocol(229 /* NT_FILL_ARRAY_WITH_COLUMN */, rowKey, timerID);

Parameters

  • rowKey (string): Primary key of the row.
  • timerID (int): ID of the timer that needs to trigger.

Return Value

  • Does not return an object.

Remarks

  • This can only be used in case a table is being processed by a multi-threaded timer.