Lines Matching full:observer
30 // Callbacks to the observer will occur on the same thread where
31 // the observer initially called AddObserver() from.
33 // * Observers can remove themselves from the observer list inside
35 // * If one thread is notifying observers concurrently with an observer
36 // removing itself from the observer list, the notifications will
39 // The drawback of the threadsafe observer list is that notifications
86 // Add an observer to the list.
104 // Remove an observer from the list.
105 // If there are pending notifications in-transit to the observer, they will
122 // If we're about to remove the last observer from the list,
137 // Make a thread-safe callback to each Observer in the list.