rx ~master (2019-06-16T13:03:22Z)
Home
Dub
Repo
SimpleObserverImpl
rx
observer
Undocumented in source.
package
mixin template
SimpleObserverImpl (
TObserver
E
) {
void
put
(E obj);
static if
(
hasCompleted!TObserver
)
void
completed
();
static if
(
hasFailure!TObserver
)
void
failure
(Exception e);
}
Members
Functions
completed
void
completed
()
Undocumented in source. Be warned that the author may not have intended to support it.
failure
void
failure
(Exception e)
Undocumented in source. Be warned that the author may not have intended to support it.
put
void
put
(E obj)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
rx
observer
classes
CompositeObserver
DoneObserver
NopObserver
ObserverObject
functions
makeObserver
interfaces
Observer
mixin templates
SimpleObserverImpl
templates
hasCompleted
hasFailure
isObserver
observerObject