django / channels

Developer-friendly asynchrony for Django

Home Page:https://channels.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No option to send message immediately

CarneyC opened this issue · comments

No option to send message immediately.
Immediately=True parameter was support in Channels 1.0 but no longer offers similar option for Channels 4.0

e.g. When I receive a message, my backend sends back three different messages at different times. However, they all arrive at once.

Channels was totally rearchitected for v2, and an immediate argument no
longer makes sense, as all messages have to go via the channel layer. Delivery should be quite prompt, and at most once, but if you need stricter ordering you'll need to build that yourself.

Duplicate of #1284