workerman/stomp

v1.0.9 2024-01-17 08:49 UTC

This package is auto-updated.

Last update: 2024-04-17 09:36:21 UTC


README

Asynchronous STOMP client for PHP based on workerman.

Installation

composer require workerman/stomp

Example

test.php

<?php
require __DIR__ . '/../vendor/autoload.php';
use Workerman\Worker;
use Workerman\Timer;
use Workerman\Stomp\Client;

$worker = new Worker();
$worker->onWorkerStart = function(){
    $client = new Workerman\Stomp\Client('stomp://127.0.0.1:61613', array(
        'debug' => true,
    ));
    $client->onConnect = function(Client $client) {
        $client->subscribe('/topic/foo', function(Client $client, $data) {
            var_export($data);
        });
    };
    $client->onError = function ($e) {
        echo $e;
    };
    Timer::add(1, function () use ($client) {
        $client->send('/topic/foo', 'Hello Workerman STOMP');
    });
    $client->connect();
};
Worker::runAll();

Run with command php test.php start

License

MIT