Class
DexFuture
Constructors
dex_future_new_for_pointer
Creates a new DexFuture
that is resolved with pointer
as a G_TYPE_POINTER
.
Functions
dex_future_firstv
Creates a new DexFuture
that resolves or rejects as soon as the
first dependent future resolves or rejects, sharing the same result.
Instance methods
dex_future_all
Creates a new DexFuture
that will resolve or reject when all futures
either resolve or reject.
dex_future_all_race
Creates a new DexFuture
that will resolve when all futures resolve
or reject as soon as the first future rejects.
dex_future_any
Creates a new DexFuture
that will resolve when any dependent future
resolves, providing the same result as the resolved future.
dex_await_pointer
Calls dex_await()
and returns the value of g_value_get_pointer(),
otherwise error
is set if the future rejected.
dex_future_first
Creates a new DexFuture
that resolves or rejects as soon as the
first dependent future resolves or rejects, sharing the same result.