Swoole\Coroutine::enableScheduler()

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Coroutine::enableScheduler()

Parameters

Return

cid

Current coroutine ID.

Description

Enable preemptive scheduler.

It is the same as ini_set("swoole.enable_preemptive_scheduler", "1");.

Example

<?php
Swoole\Coroutine::enableScheduler();
Co\run(function () {
    //
});
Last updated on August 31, 2022