laravel-websockets/src/Statistics/Logging/StatisticsLogger.php

18 lines
419 B
PHP
Raw Normal View History

2018-12-03 12:02:51 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\Statistics\Logging;
use Ratchet\ConnectionInterface;
2018-12-03 13:44:26 +00:00
interface StatisticsLogger
2018-12-03 12:02:51 +00:00
{
2018-12-03 13:44:26 +00:00
public function logWebSocketMessage(ConnectionInterface $connection);
2018-12-03 12:02:51 +00:00
2018-12-03 13:44:26 +00:00
public function logApiMessage($appId);
2018-12-03 12:02:51 +00:00
2018-12-03 13:44:26 +00:00
public function logConnection(ConnectionInterface $connection);
2018-12-03 13:24:06 +00:00
2018-12-03 13:44:26 +00:00
public function logDisconnection(ConnectionInterface $connection);
2018-12-03 12:02:51 +00:00
2018-12-03 13:44:26 +00:00
public function save();
2018-12-03 12:02:51 +00:00
}