| 16 | |
| 17 | |
| 18 | void TOwningThreadedLogBackendCreator::ToJson(NJson::TJsonValue& value) const { |
| 19 | value["QueueLen"] = QueueLen; |
| 20 | value["Threaded"] = true; |
| 21 | Slave->ToJson(value); |
| 22 | } |
| 23 | |
| 24 | void TOwningThreadedLogBackendCreator::SetQueueOverflowCallback(std::function<void()> callback) { |
| 25 | QueueOverflowCallback = std::move(callback); |