Fire-and-forget async task (matches JS spawn() / C# Task.Run()). Used for fetching order book snapshots while WS loop continues.
(Runnable task)
| 1832 | * Used for fetching order book snapshots while WS loop continues. |
| 1833 | */ |
| 1834 | public void spawn(Runnable task) { |
| 1835 | VIRTUAL_EXECUTOR.execute(task); |
| 1836 | } |
| 1837 | |
| 1838 | /** |
| 1839 | * Schedule a method-name callback on the virtual executor after a delay. |
no outgoing calls