Add $clusterTime.
(
self,
command: MutableMapping[str, Any],
session: Optional[AsyncClientSession],
client: Optional[AsyncMongoClient[Any]],
)
| 584 | return self.conn.is_closing() |
| 585 | |
| 586 | def send_cluster_time( |
| 587 | self, |
| 588 | command: MutableMapping[str, Any], |
| 589 | session: Optional[AsyncClientSession], |
| 590 | client: Optional[AsyncMongoClient[Any]], |
| 591 | ) -> None: |
| 592 | """Add $clusterTime.""" |
| 593 | if client: |
| 594 | client._send_cluster_time(command, session) |
| 595 | |
| 596 | def add_server_api(self, command: MutableMapping[str, Any]) -> None: |
| 597 | """Add server_api parameters.""" |
no test coverage detected