curtis18/yii2-swoft-rpc

swoft json tcp rpc client yii2

1.0 2019-07-26 04:32 UTC

This package is auto-updated.

Last update: 2024-04-05 01:46:55 UTC


README

Install

  • composer command
composer require curtis18/yii2-swoft-rpc

Usage

  • Please make sure Swoft RPC Server created before using this extension in Yii2.
use yii\Swoft\JsonRpc\Client;

public function actionRpcTest()
{
    $rpc = new Client("tcp://127.0.0.1:8001", \App\Rpc\Lib\TestInterface::class, "1.7");
    $result = $rpc->echoRpc("Hello World");
    echo $result;
}

Resources

LICENSE

The Component is open-sourced software licensed under the Apache license.