改名
This commit is contained in:
@@ -15,7 +15,7 @@ use Snowflake\Exception\ConfigException;
|
||||
use Snowflake\Exception\NotFindClassException;
|
||||
use Snowflake\Snowflake;
|
||||
|
||||
#[\Attribute(\Attribute::TARGET_METHOD)] class RpcService extends Attribute
|
||||
#[\Attribute(\Attribute::TARGET_METHOD)] class RpcClient extends Attribute
|
||||
{
|
||||
|
||||
private string $uri = '';
|
||||
@@ -1,37 +0,0 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Annotation\Rpc;
|
||||
|
||||
|
||||
use Annotation\Attribute;
|
||||
use JetBrains\PhpStorm\Pure;
|
||||
|
||||
|
||||
/**
|
||||
* Class Producer
|
||||
* @package Annotation\Rpc
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)] class Producer extends Attribute
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* Producer constructor.
|
||||
* @param string $name
|
||||
*/
|
||||
public function __construct(private string $name)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param array $handler
|
||||
* @return mixed
|
||||
*/
|
||||
#[Pure] public function execute(array $handler): mixed
|
||||
{
|
||||
return parent::execute($handler); // TODO: Change the autogenerated stub
|
||||
}
|
||||
|
||||
}
|
||||
@@ -17,7 +17,7 @@ use Snowflake\Snowflake;
|
||||
* Class RpcClient
|
||||
* @package Annotation\Rpc
|
||||
*/
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)] class RpcService extends Attribute
|
||||
#[\Attribute(\Attribute::TARGET_CLASS)] class RpcProducer extends Attribute
|
||||
{
|
||||
|
||||
private array $config;
|
||||
@@ -26,20 +26,18 @@ use Snowflake\Snowflake;
|
||||
/**
|
||||
* RpcClient constructor.
|
||||
* @param string $cmd
|
||||
* @param string $host
|
||||
* @param int $port
|
||||
* @param int $timeout
|
||||
* @param int $mode
|
||||
*/
|
||||
public function __construct(
|
||||
public string $cmd,
|
||||
public string $host,
|
||||
public int $port,
|
||||
public int $timeout = 1,
|
||||
public int $mode = SWOOLE_SOCK_TCP6
|
||||
)
|
||||
{
|
||||
$this->config = ['host' => $host, 'port' => $port, 'mode' => $mode, 'timeout' => $timeout];
|
||||
$this->config = ['port' => $port, 'mode' => $mode, 'timeout' => $timeout];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user