DoneObserver

Constructors

this
this(Exception e)
Undocumented in source.

Members

Functions

completed
void completed()
Undocumented in source. Be warned that the author may not have intended to support it.
exception
Exception exception()
Undocumented in source. Be warned that the author may not have intended to support it.
exception
void exception(Exception e)
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()
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

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

Meta