durianpeople / runtime-messaging
Intra-messaging system with runtime storage
v1.0.1
2020-07-20 14:44 UTC
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2026-02-21 03:35:21 UTC
README
This library is an intra-messaging system with runtime storage (storage is available only per request/execution).
Usage
use Durianpeople\Messaging\Messaging; $channel_1 = Messaging::channel('channel_1'); $channel_1->onReceiveMessage(function($message) { var_dump($message); }); Messaging::send('channel_1', "Test message");