daemon
local daemon = require("@rodeo-client-lune/daemon")Summary
Section titled “Summary”| Entry | Description |
|---|---|
| Daemon | |
| StreamCallback |
Daemon
Section titled “Daemon”type Daemon = { call: (method: string, params: any?) -> any, registerStream: (streamId: string, cb: StreamCallback) -> (), unregisterStream: (streamId: string) -> (), shutdown: () -> (),}StreamCallback
Section titled “StreamCallback”type StreamCallback = (method: string, params: { [string]: any }) -> ()