rx/thruway-client
最新稳定版本:3.3.9
Composer 安装命令:
composer require rx/thruway-client
包简介
RxPHP WAMP client
README 文档
README
This project is a WAMP v2 client written in PHP that uses RxPHP Observables instead of promises and event emitters.
If you don't know what WAMP is, you should read up on it.
If you don't know what RxPHP or ReactiveExtensions is, you're missing out...
Installation
composer require rx/thruway-client
Usage
use Rx\Observable; use Rx\Thruway\Client; require __DIR__ . '/vendor/autoload.php'; $wamp = new Client('ws://127.0.0.1:9090', 'realm1');
Call
$wamp->call('add.rpc', [1, 2]) ->map(function (Thruway\Message\ResultMessage $r) { return $r->getArguments()[0]; }) ->subscribe(function ($r) { echo $r; });
Register
$wamp->register('add.rpc', function ($a, $b) { return $a + $b; })->subscribe();
If the Registration Handler throws an exception,
thruway.error.invocation_exceptionis returned to the caller. If you would like to allow more specific error messages, you must throw aWampErrorExceptionor, if using observable sequences that are returned from the RPC, you canonErroraWampErrorException.
Publish to topic
$wamp->publish('example.topic', 'some value'); $wamp->publish('example.topic', Observable::interval(1000)); // you can also publish an observable
Subscribe to topic
$wamp->topic('example.topic') ->map(function(Thruway\Message\EventMessage $m) { return $m->getArguments()[0]; }) ->subscribe(function ($v) { echo $v; });
统计信息
- 总下载量: 18.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 0
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-16