durianpeople/runtime-messaging

具有运行时存储的内部消息系统

v1.0.1 2020-07-20 14:44 UTC

This package is auto-updated.

Last update: 2024-09-21 00:09:16 UTC


README

这个库是一个具有运行时存储的内部消息系统(存储仅在请求/执行时可用)。

用法

use Durianpeople\Messaging\Messaging;

$channel_1 = Messaging::channel('channel_1');
$channel_1->onReceiveMessage(function($message) {
    var_dump($message);
});

Messaging::send('channel_1', "Test message");