| 589 | void Runtime::daemonClientDisconnected(const Shared<IDaemonClient>& daemonClient) { |
| 590 | if (_javaScriptRuntime != nullptr) { |
| 591 | _javaScriptRuntime->daemonClientDisconnected(daemonClient); |
| 592 | } |
| 593 | } |
| 594 | |
| 595 | void Runtime::daemonClientDidReceiveClientPayload(const Shared<IDaemonClient>& daemonClient, |
| 596 | int senderClientId, |
| 597 | const BytesView& payload) { |
| 598 | if (_javaScriptRuntime != nullptr) { |
| 599 | _javaScriptRuntime->daemonClientDidReceiveClientPayload(daemonClient, senderClientId, payload); |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | void Runtime::setAutoRenderDisabled(bool autoRenderDisabled) { |
| 604 | auto oldValue = _autoRenderDisabled.exchange(autoRenderDisabled); |