// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MOJO_PUBLIC_CPP_BINDINGS_SYNC_HANDLE_WATCHER_H_ #define MOJO_PUBLIC_CPP_BINDINGS_SYNC_HANDLE_WATCHER_H_ #include "base/component_export.h" #include "base/memory/ref_counted.h" #include "base/sequence_checker.h" #include "mojo/public/cpp/bindings/sync_handle_registry.h" namespace mojo { // SyncHandleWatcher supports watching a handle synchronously. It also supports // registering the handle with a sequence-local storage (SyncHandleRegistry), so // that when other SyncHandleWatcher instances on the same sequence perform sync // handle watching, this handle will be watched together. // // SyncHandleWatcher is used for sync methods. While a sync call is waiting for // response, we would like to block the sequence. On the other hand, we need // incoming sync method requests on the same sequence to be able to reenter. We // also need primary interface endpoints to continue dispatching messages for // associated endpoints on different sequence. // // This class is not thread safe. class COMPONENT_EXPORT(MOJO_CPP_BINDINGS) SyncHandleWatcher { … }; } // namespace mojo #endif // MOJO_PUBLIC_CPP_BINDINGS_SYNC_HANDLE_WATCHER_H_