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

Method recv_status_change

cassandra/protocol.py:1028–1032  ·  view source on GitHub ↗
(cls, f, protocol_version)

Source from the content-addressed store, hash-verified

1026
1027 @classmethod
1028 def recv_status_change(cls, f, protocol_version):
1029 # "UP" or "DOWN"
1030 change_type = read_string(f)
1031 address = read_inet(f)
1032 return dict(change_type=change_type, address=address)
1033
1034 @classmethod
1035 def recv_schema_change(cls, f, protocol_version):

Callers

nothing calls this directly

Calls 2

read_stringFunction · 0.85
read_inetFunction · 0.85

Tested by

no test coverage detected