2018-12-03 12:02:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
2018-12-03 13:45:50 +00:00
|
|
|
namespace BeyondCode\LaravelWebSockets\Statistics\Logger;
|
2018-12-03 12:02:51 +00:00
|
|
|
|
2018-12-03 15:23:20 +00:00
|
|
|
use Ratchet\connectionInterface;
|
2018-12-03 12:02:51 +00:00
|
|
|
|
2018-12-03 13:44:26 +00:00
|
|
|
interface StatisticsLogger
|
2018-12-03 12:02:51 +00:00
|
|
|
{
|
2018-12-03 15:23:20 +00:00
|
|
|
public function webSocketMessage(connectionInterface $connection);
|
2018-12-03 12:02:51 +00:00
|
|
|
|
2018-12-03 15:23:20 +00:00
|
|
|
public function apiMessage($appId);
|
2018-12-03 12:02:51 +00:00
|
|
|
|
2018-12-03 15:23:20 +00:00
|
|
|
public function connection(connectionInterface $connection);
|
2018-12-03 13:24:06 +00:00
|
|
|
|
2018-12-03 15:23:20 +00:00
|
|
|
public function disconnection(connectionInterface $connection);
|
2018-12-03 12:02:51 +00:00
|
|
|
|
2018-12-03 13:44:26 +00:00
|
|
|
public function save();
|
2018-12-04 21:22:33 +00:00
|
|
|
}
|