123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace Predis\Protocol\Text;
- use Predis\Helpers;
- use Predis\Connection\ComposableConnectionInterface;
- use Predis\Iterator\MultiBulkResponseSimple;
- use Predis\Protocol\ProtocolException;
- use Predis\Protocol\ResponseHandlerInterface;
- class ResponseMultiBulkStreamHandler implements ResponseHandlerInterface
- {
-
- public function handle(ComposableConnectionInterface $connection, $lengthString)
- {
- $length = (int) $lengthString;
- if ("$length" != $lengthString) {
- Helpers::onCommunicationException(new ProtocolException(
- $connection, "Cannot parse '$lengthString' as multi-bulk length"
- ));
- }
- return new MultiBulkResponseSimple($connection, $length);
- }
- }
|