Create a change stream using the default client and return it.
(self, *args, **kwargs)
| 69 | raise NotImplementedError |
| 70 | |
| 71 | def change_stream(self, *args, **kwargs): |
| 72 | """Create a change stream using the default client and return it.""" |
| 73 | return self.change_stream_with_client(self.client, *args, **kwargs) |
| 74 | |
| 75 | def client_with_listener(self, *commands): |
| 76 | """Return a client with a AllowListEventListener.""" |
no test coverage detected