NopObserver

Members

Functions

completed
void completed()
Undocumented in source. Be warned that the author may not have intended to support it.
failure
void failure(Exception )
Undocumented in source. Be warned that the author may not have intended to support it.
put
void put(E )
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

instance
Observer!E instance()

Examples

Observer!int o1 = NopObserver!int.instance;
Observer!int o2 = NopObserver!int.instance;
assert(o1 !is null);
assert(o1 is o2);

Meta