It returns multibulk responses as iterators that can stream bulk elements. Streamable multibulk responses are not globally supported by the abstractions built-in into Predis, such as transactions or pipelines. Use them with care!
Автор: Daniele Alessandri (suppakilla@gmail.com)
Наследование: implements Predis\Protocol\Text\Handler\ResponseHandlerInterface
 /**
  * @group disconnected
  * @expectedException \Predis\Protocol\ProtocolException
  * @expectedExceptionMessage Cannot parse 'invalid' as a valid length for a multi-bulk response.
  */
 public function testInvalid()
 {
     $handler = new Handler\StreamableMultiBulkResponse();
     $connection = $this->getMock('Predis\\Connection\\CompositeConnectionInterface');
     $connection->expects($this->never())->method('readLine');
     $connection->expects($this->never())->method('readBuffer');
     $handler->handle($connection, 'invalid');
 }