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

Method recv_topology_change

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

Source from the content-addressed store, hash-verified

1019
1020 @classmethod
1021 def recv_topology_change(cls, f, protocol_version):
1022 # "NEW_NODE" or "REMOVED_NODE"
1023 change_type = read_string(f)
1024 address = read_inet(f)
1025 return dict(change_type=change_type, address=address)
1026
1027 @classmethod
1028 def recv_status_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