(cls, f, protocol_version)
| 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): |
nothing calls this directly
no test coverage detected