All functions |
|
---|---|
Create an async function |
|
Retry an asynchronous function with exponential backoff |
|
Make a minimal deferred that resolves to the specified value |
|
|
Async debugging utilities |
Find the value of a match, asynchronously |
|
Do every or some elements of a list satisfy an asynchronous predicate? |
|
Keep or drop elements using an asyncronous predicate function |
|
Apply an asynchronous function to each element of a vector |
|
A deferred value that resolves when the specified number of deferred values resolve, or is rejected when one of them is rejected |
|
Make an asynchronous function that always succeeds |
|
Replicate an async function a number of times |
|
Retry an asynchronous function a number of times |
|
Make an asynchronous funcion retryable |
|
Compose asynchronous functions |
|
Asynchronous function call with a timeout |
|
Repeated timer |
|
It runs each task in series but stops whenever any of the functions were successful. If one of the tasks were successful, the callback will be passed the result of the successful task. If all tasks fail, the callback will be passed the error and result (if any) of the final attempt. |
|
Repeatedly call task until it its test function returns |
|
Repeatedly call task, while test returns true |
|
Asynchronous function call, in a worker pool |
|
Deferred value |
|
Delay async computation for the specified time |
|
Generic Event Emitter |
|
External process via a process generator |
|
Asynchronous HTTP GET request |
|
Asynchronous HTTP HEAD request |
|
Asynchronous HTTP POST request |
|
Set curl HTTP options in an event loop |
|
Throw R errors for HTTP errors |
|
Checks if a function is async |
|
Is object a deferred value? |
|
Run event loop to completion |
|
Asynchronous external process execution |
|
Asynchronous call to an R function, in a background R process |
|
HTTP event emitter for server-sent events |
|
Synchronously wrap asynchronous code |
|
Deferred value for a set of deferred values |
|
Resolve a deferred as soon as some deferred from a list resolve |