class ProcessDriver implements Driver (View source)

Methods

__construct(Factory $processFactory)

Create a new process based concurrency driver.

array
run(Closure|array $tasks, CarbonInterval|int|null $timeout = null)

Run the given tasks concurrently and return an array containing the results.

defer(Closure|array $tasks)

Start the given tasks in the background after the current task has finished.

Details

__construct(Factory $processFactory)

Create a new process based concurrency driver.

Parameters

Factory $processFactory

array run(Closure|array $tasks, CarbonInterval|int|null $timeout = null)

Run the given tasks concurrently and return an array containing the results.

Parameters

Closure|array $tasks
CarbonInterval|int|null $timeout

Return Value

array

Exceptions

Throwable

DeferredCallback defer(Closure|array $tasks)

Start the given tasks in the background after the current task has finished.

Parameters

Closure|array $tasks

Return Value

DeferredCallback