Methods
chain
chain<B>( f: function ) : Future < B >
Type parameters
Parameters
map
map<B>( f: function ) : Future < B >
Type parameters
Parameters
mapTo
Type parameters
Parameters
of
Type parameters
Parameters
subscribe
subscribe( f: function ) : void
Static lift
lift<T1, R>( f: function , m: Future < T1 > ) : Future < R >
lift<T1, T2, R>( f: function , m1: Future < T1 > , m2: Future < T2 > ) : Future < R >
lift<T1, T2, T3, R>( f: function , m1: Future < T1 > , m2: Future < T2 > , m3: Future < T3 > ) : Future < R >
Type parameters
Parameters
Type parameters
Parameters
Type parameters
Parameters
f: function
( t1: T1 , t2: T2 , t3: T3 ) : R
Static of
Type parameters
Parameters
Legend
Module
Object literal
Variable
Function
Function with type parameter
Index signature
Type alias
Enumeration
Enumeration member
Property
Method
Interface
Interface with type parameter
Constructor
Property
Method
Index signature
Class
Class with type parameter
Constructor
Property
Method
Accessor
Index signature
Inherited constructor
Inherited property
Inherited method
Inherited accessor
Protected property
Protected method
Protected accessor
Private property
Private method
Private accessor
Static property
Static method
A future is a thing that occurs at some point in time with a value. It can be understood as a pair consisting of the time the future occurs and its associated value. It is quite like a JavaScript promise.