We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cda8210 commit 23e3d8eCopy full SHA for 23e3d8e
src/frequenz/sdk/timeseries/_resampling.py
@@ -346,8 +346,13 @@ def __init__(self, config: ResamplerConfig) -> None:
346
config: The configuration for the resampler.
347
"""
348
self._config = config
349
+ """The configuration for this resampler."""
350
+
351
self._resamplers: dict[Source, _StreamingHelper] = {}
352
+ """A mapping between sources and the streaming helper handling that source."""
353
354
self._timer: Timer = Timer(config.resampling_period_s)
355
+ """The timer to trigger the next resampling."""
356
357
@property
358
def config(self) -> ResamplerConfig:
0 commit comments