Skip to content

Releases: taskiq-python/taskiq-faststream

0.1.4

13 Nov 08:00
f2ea7d6

Choose a tag to compare

What's Changed

Now, you can send multiple messages per task call just using generator message callback

async def collect_information_to_send():
    """Sends 10 messages per task call."""
    for i in range(10):
        yield i

taskiq_broker.task(
    message=collect_information_to_send,
    ...,
)

New Contributors

Full Changelog: 0.1.3...0.1.4

0.1.3

12 Nov 15:04

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.1.0...0.1.3