16 lines
227 B
PHP
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;
|
|
}
|