durianpeople/runtime-messaging

Intra-messaging system with runtime storage

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

This package is auto-updated.

Last update: 2025-07-21 01:49:25 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");