-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebsocketEventTrait.php
63 lines (56 loc) · 1.79 KB
/
WebsocketEventTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
declare(strict_types=1);
namespace hunwalk\websocket\traits;
use Exception;
use hunwalk\websocket\events\ClientErrorEvent;
use hunwalk\websocket\events\ClientEvent;
use hunwalk\websocket\events\ClientMessageEvent;
use hunwalk\websocket\events\ExceptionEvent;
use Ratchet\ConnectionInterface;
use Yii;
use yii\base\InvalidConfigException;
/**
* Trait WebsocketEventTrait
* @package hunwalk\websocket\traits
*/
trait WebsocketEventTrait
{
/**
* @param ConnectionInterface $client
* @return ClientEvent|object
* @throws InvalidConfigException
*/
public function getClientEvent(ConnectionInterface $client)
{
return Yii::createObject(['class' => ClientEvent::class, 'client' => $client]);
}
/**
* @param ConnectionInterface $client
* @param string $message
* @return ClientMessageEvent|object
* @throws InvalidConfigException
*/
public function getClientMessageEvent(ConnectionInterface $client, string $message)
{
return Yii::createObject(['class' => ClientMessageEvent::class, 'client' => $client, 'message' => $message]);
}
/**
* @param ConnectionInterface $client
* @param Exception $exception
* @return ClientErrorEvent|object
* @throws InvalidConfigException
*/
public function getClientErrorEvent(ConnectionInterface $client, Exception $exception)
{
return Yii::createObject(['class' => ClientErrorEvent::class, 'client' => $client, 'exception' => $exception]);
}
/**
* @param Exception $exception
* @return ExceptionEvent|object
* @throws InvalidConfigException
*/
public function getExceptionEvent(Exception $exception): ExceptionEvent
{
return Yii::createObject(['class' => ExceptionEvent::class, 'exception' => $exception]);
}
}