Returns a list of all known :class:`.Host` instances in the cluster.
(self)
| 358 | return None |
| 359 | |
| 360 | def all_hosts(self): |
| 361 | """ |
| 362 | Returns a list of all known :class:`.Host` instances in the cluster. |
| 363 | """ |
| 364 | with self._hosts_lock: |
| 365 | return list(self._hosts.values()) |
| 366 | |
| 367 | |
| 368 | REPLICATION_STRATEGY_CLASS_PREFIX = "org.apache.cassandra.locator." |