| 445 | } |
| 446 | |
| 447 | void Context::setUpdateHandlerSynchronously(bool updateHandlerSynchronously) { |
| 448 | std::lock_guard<Mutex> guard(_mutex); |
| 449 | _updateHandlerSynchronously = updateHandlerSynchronously; |
| 450 | } |
| 451 | |
| 452 | void Context::setCurrent(const Ref<Context>& currentContext) { |
| 453 | ContextBase::setCurrent(currentContext.get()); |
no outgoing calls
no test coverage detected