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

18 lines
418 B
PHP
Raw Normal View History

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
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
}