MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / read_value

Function read_value

cassandra/protocol.py:1447–1451  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

1445
1446
1447def read_value(f):
1448 size = read_int(f)
1449 if size < 0:
1450 return None
1451 return f.read(size)
1452
1453
1454def write_value(f, v):

Callers 2

recv_rowMethod · 0.85
read_bytesmapFunction · 0.85

Calls 2

read_intFunction · 0.85
readMethod · 0.80

Tested by

no test coverage detected