MCPcopy Create free account
hub / github.com/apache/thrift / readByte

Method readByte

lib/php/lib/Protocol/TBinaryProtocol.php:343–350  ·  view source on GitHub ↗
(&$value)

Source from the content-addressed store, hash-verified

341 }
342
343 public function readByte(&$value)
344 {
345 $data = $this->trans_->readAll(1);
346 $arr = unpack('c', $data);
347 $value = $arr[1];
348
349 return 1;
350 }
351
352 public function readI16(&$value)
353 {

Callers 5

readMessageBeginMethod · 0.95
readFieldBeginMethod · 0.95
readMapBeginMethod · 0.95
readListBeginMethod · 0.95
readSetBeginMethod · 0.95

Calls 1

readAllMethod · 0.45

Tested by

no test coverage detected