mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
32 lines
693 B
PHP
32 lines
693 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Annotation\Swoole;
|
|
|
|
use Attribute;
|
|
use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
|
|
/**
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
* @NamedArgumentConstructor()
|
|
* Class OnMessageEvent
|
|
*/
|
|
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_METHOD)]
|
|
class OnMessageEvent extends OnSwooleEventBase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $connect_type = 'default';
|
|
|
|
public function __construct($connect_type = 'default', $rule = '', $level = 20)
|
|
{
|
|
$this->connect_type = $connect_type;
|
|
$this->rule = $rule;
|
|
$this->level = $level;
|
|
}
|
|
}
|