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

Method readString

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

Source from the content-addressed store, hash-verified

448 }
449
450 public function readString(&$value)
451 {
452 $result = $this->readI32($len);
453 if ($len) {
454 $value = $this->trans_->readAll($len);
455 } else {
456 $value = '';
457 }
458
459 return $result + $len;
460 }
461
462 public function readUuid(&$value)
463 {

Callers 4

readMessageBeginMethod · 0.95
testNakedFunction · 0.95
testFieldFunction · 0.95
readMessageBeginMethod · 0.95

Calls 2

readI32Method · 0.95
readAllMethod · 0.45

Tested by

no test coverage detected