MCPcopy Create free account
hub / github.com/NodeRT/NodeRT / NewIdleToken

Method NewIdleToken

src/NodeRTLib/ProjectFiles/node-async.h:119–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117 }
118
119 static uv_idle_t* NewIdleToken() {
120 uv_idle_t* idleHandle = new uv_idle_t;
121 uv_idle_init(uv_default_loop(), idleHandle);
122
123 SetHandleData(idleHandle->data);
124 return idleHandle;
125 }
126
127 static uv_idle_t* NewIdleToken(Handle<Function> callback,
128 Handle<Value> receiver) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected