It'd be cool if one could open an EventSource on an OrderedCollection to subscribe for changes in a user's outbox, This could be used as a basis for real time chats and games.
Probably needs to be on top of HTTP2/3 to handle more subscriptions over a single connection.
Maybe even with a Triple Pattern Fragments querystring to filter by Activity type/author/cc/etc?
@thisismissem Yup! I've done a lot of work with scaling EventSource, HTTP2, and push based stuff in general. :)
I'm thinking I'll eventually start working on something similar to SOLID pods but more client-side.
@thisismissem Interesting. Seems to be an order of magnitude more complex than what I had in mind, but it covers a lot more cases which is interesting.
@mauve SOLID pods have a Notification Protocol that you might be interested in.