php-async/src/functions.php

39 lines
541 B
PHP

<?php
namespace JoopSchilder\Asynchronous;
if (!function_exists('async_run')) {
/**
* @param callable $function
* @param mixed ...$parameters
* @return Promise|null
*/
function async(callable $function, ...$parameters)
{
return Asynchronous::run($function, ...$parameters);
}
}
if (!function_exists('async_cleanup')) {
/**
*
*/
function async_cleanup()
{
Asynchronous::cleanup();
}
}
if (!function_exists('async_await_all')) {
/**
*
*/
function async_await_all()
{
Asynchronous::awaitChildren();
}
}