MGDigital\BusQue\Redis\RedisAdapterInterface::sRem PHP Метод

sRem() публичный Метод

public sRem ( string $key, array $members )
$key string
$members array
    public function sRem(string $key, array $members);

Usage Example

Пример #1
0
 public function it_can_acknowledge_a_completed_command()
 {
     $this->adapter->sRem('test:test:consuming', ['test'])->shouldBeCalled();
     $this->completeCommand('test', 'test');
 }