While docs for action and views allude to support for reply streaming, there’s few details. Is it really advisable to have an action or view method be long-running? like arbitrarily? hours and days?
I’m implementing a set of notification counters that ideally should update in the client in real or near-real time, without polling.
Right now I’m leaning to an external solution using Firebase Cloud Messaging but would love it if I can avoid all that additional complexity.
Thanks!