(data: any, callback_id: string)
| 371 | |
| 372 | // Send data to backend |
| 373 | export function pushData(data: any, callback_id: string) { |
| 374 | if (state.CurrentSession === null) |
| 375 | return console.error("can't invoke PushData when WebIOController is not instantiated"); |
| 376 | |
| 377 | state.CurrentSession.send_message({ |
| 378 | event: "callback", |
| 379 | task_id: callback_id, |
| 380 | data: data |
| 381 | }); |
| 382 | } |
no test coverage detected
searching dependent graphs…