We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b35dc commit 985bb57Copy full SHA for 985bb57
src/frequenz/dispatch/_dispatcher.py
@@ -281,7 +281,7 @@ async def start_managing(
281
282
You can await the `Dispatcher` instance to block until all types
283
registered with `start_managing()` are stopped using
284
- `stop_dispatching()`
+ `stop_managing()`
285
286
"Merging" means that when multiple dispatches are active at the same time,
287
the intervals are merged into one.
@@ -330,7 +330,7 @@ def id_identity(dispatch: Dispatch) -> int:
330
self._actor_dispatchers[dispatch_type] = dispatcher
331
dispatcher.start()
332
333
- async def stop_dispatching(self, dispatch_type: str) -> None:
+ async def stop_managing(self, dispatch_type: str) -> None:
334
"""Stop managing actors for a given dispatch type.
335
336
Args:
0 commit comments