Home | History | Annotate | Download | only in synchronization

Lines Matching refs:Callback

14 #include "base/callback.h"
29 // the waitable event is signaled, a callback is made in the thread of a given
30 // MessageLoop. This callback can be deleted by deleting the waiter.
68 typedef Callback<void(WaitableEvent*)> EventCallback;
72 // When @event is signaled, the given callback is called on the thread of the
74 bool StartWatching(WaitableEvent* event, const EventCallback& callback);
80 // The callback will *not* be called for the current watch after this
81 // function returns. Since the callback runs on the same thread as this
89 // Return the callback that will be invoked when the event is
91 const EventCallback& callback() const { return callback_; }