Execution Delay Node
Core API Hook: Thread.Sleep / Task.Delay (.NET Engine)
Introduce precise waiting periods inside macro sequences to synchronize keystrokes, application load times, or API responses.
Configuration Parameters
| Parameter | Type | Description |
|---|---|---|
| Target | string / integer | Target delay interval duration value mapped in milliseconds (range: 1ms - 60,000ms). |
config.json Mapping
{
"Type": "Delay",
"Name": "Wait 500ms",
"Target": "500"
}
Save inside database layout actions configuration map.
Native Execution Hook
// Delay execution logic
if (int.TryParse(action.Target, out int ms))
{
System.Threading.Thread.Sleep(ms);
}
Executed within IsoCore remapping runtime loop.
← Back to Actions Directory
IsoKey Module: Delay