jiaozi/protocol_json_stream

There is no license information available for the latest version (v1.0.1) of this package.

v1.0.1 2018-07-18 14:28 UTC

This package is not auto-updated.

Last update: 2024-04-28 03:46:35 UTC


README

A protocol for json message transfer over stream.

It's designed for working with workerman. The following piece of code shows you how to make a message server;

<?php
use Workerman\Worker;

require_once __DIR__ . "/vendor/autoload.php";

$woker = new Worker("tcp://127.0.0.1:1000");
// all you need to do is setting the protocol
$woker->protocol = \pjs\protocols\JsonStreamProtocol::class;
$woker->onMessage = function(Workerman\Connection\ConnectionInterface $conn, $data){
    var_dump($data);
};

Worker::runAll();

Now we can test against the server with a simple client; Here is the code.

<?php
require_once __DIR__ . "/vendor/autoload.php";

// This package contains a simple client for message transfer. 
$client = new \pjs\ClientConnection("127.0.0.1:1000");
$client->connect();
$client->send(['hello' => 'hello']);

Have fun!