mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 02:37:58 +08:00
0367a7e629
Co-authored-by: sy-records <52o@qq52o.cn>
1.7 KiB
1.7 KiB
輔助類
Hyperf 提供了大量便捷的輔助類,這裡會列出一些常用的好用的,不會列舉所有,可自行檢視 hyperf/support 元件的程式碼獲得更多資訊。
協程輔助類
Hyperf\Coroutine\Coroutine
該輔助類用於協助進行協程相關的判斷或操作。
id(): int
透過靜態方法 id()
獲得當前所處的 協程 ID
,如當前不處於協程環境下,則返回 -1
。
create(callable $callable): int
透過靜態方法 create(callable $callable)
可建立一個協程,還可以透過全域性函式 co(callable $callable)
或 go(callable $callable)
達到同樣的目的,該方法是對 Swoole
建立協程方法的一個封裝,區別在於不會丟擲未捕獲的異常,未捕獲的異常會透過 Hyperf\Contract\StdoutLoggerInterface
以 warning
等級輸出。
inCoroutine(): bool
透過靜態方法 inCoroutine()
判斷當前是否處於協程環境下。
Hyperf\Context\Context
用於處理協程上下文,本質上是對 Swoole\Coroutine::getContext()
方法的一個封裝,但區別在於這裡相容了非協程環境下的執行。
Hyperf\Coordinator\CoordinatorManager
該輔助類用於指揮協程等待事件發生。
<?php
use Hyperf\Coordinator\CoordinatorManager;
use Hyperf\Coordinator\Constants;
use Hyperf\Coroutine\Coroutine;
Coroutine::create(function() {
// 所有OnWorkerStart事件回撥完成後喚醒
CoordinatorManager::until(Constants::WORKER_START)->yield();
echo 'worker started';
// 分配資源
// 所有OnWorkerExit事件回撥完成後喚醒
CoordinatorManager::until(Constants::WORKER_EXIT)->yield();
echo 'worker exited';
// 回收資源
});