Method
DexLimiterrun
unstable since: 1.2
Declaration [src]
DexFuture*
dex_limiter_run (
DexLimiter* limiter,
DexScheduler* scheduler,
gsize stack_size,
DexFiberFunc func,
gpointer func_data,
GDestroyNotify func_data_destroy
)
Description [src]
Runs func while holding one permit from limiter.
The returned future resolves or rejects with the result of the spawned fiber. The permit is released automatically after the fiber resolves or rejects. If the returned future is discarded after the fiber starts, the fiber is allowed to complete so that the permit can be released.
Available since: 1.2
Parameters
scheduler-
Type:
DexSchedulerScheduler to spawn
funcon, orNULLfor the thread default.The argument can be NULL.The data is owned by the caller of the method. stack_size-
Type:
gsizeStack size for the spawned fiber, or zero to use the default.
func-
Type:
DexFiberFuncFiber function to run after a permit is acquired.
func_data-
Type:
gpointerClosure data for
func.The argument can be NULL.The data is owned by the caller of the method. func_data_destroy-
Type:
GDestroyNotifyDestroy notify for
func_data.
Return value
Type: DexFuture
A future representing the spawned fiber.
| The caller of the method takes ownership of the returned data, and is responsible for freeing it. |