quixio / quix-streams

Quix Streams - A library for data streaming and Python Stream Processing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add publish for individual timestamp.

tomas-quix opened this issue · comments

Is your feature request related to a problem? Please describe.
Following usecase is otherwise very difficult:
`def on_dataframe_received_handler(stream_consumer: qx.StreamConsumer, data: qx.TimeseriesData):

for row in data.timestamps:

    if row.parameters["Speed"].numeric_value > 200:
        topic_producer.get_or_create_stream(stream_consumer.stream_id).timeseries.publish(row)`

Describe the solution you'd like
Add overload for this class.