*/ namespace Asio; /** * Class Future * * When an asynchronous operation completes, its Future will be resolved, * resuming the corresponding coroutine (if Future was yielded by a Generator). * * @package Asio */ final class Future { /** * This class can only be instantiated by asynchronous operations. */ private function __construct() {} }