Files
nsqphp/src/Reconnect/ReconnectStrategy.php
2021-01-24 23:15:07 +03:00

16 lines
227 B
PHP

<?php
declare(strict_types=1);
namespace Nsq\Reconnect;
use Nsq\Exception\ConnectionFail;
interface ReconnectStrategy
{
/**
* @throws ConnectionFail
*/
public function connect(callable $callable): void;
}