observe v0.0.1 (2015-06-27T08:05:45Z)
Dub
Repo
Subscription
observe
Undocumented in source.
struct
Subscription (
Observable
) {
alias
NextFunc
=
void
delegate
(
ElementType
!
Observable
)
;
Observable
o
;
NextFunc
onNext
;
ErrorFunc
onError
;
CompletedFunc
onCompleted
;
bool
active
;
void
dispose
();
}
Members
Aliases
NextFunc
alias
NextFunc
=
void
delegate
(
ElementType
!
Observable
)
Undocumented in source.
Functions
dispose
void
dispose
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
active
bool
active
;
Undocumented in source.
o
Observable
o
;
Undocumented in source.
onCompleted
CompletedFunc
onCompleted
;
Undocumented in source.
onError
ErrorFunc
onError
;
Undocumented in source.
onNext
NextFunc
onNext
;
Undocumented in source.
Meta
Source
See Implementation
observe
aliases
CompletedFunc
ErrorFunc
PayloadType
observeRange
classes
ConcatMap
FiberSubject
Fork
ObservableRange
Observer
Subject
functions
chain
fork
observe
zip
structs
Subscription
templates
ElementType
concatMap
filter
foo
isObservable
map
tap