FHIR Chat · message queuing · implementers

Stream: implementers

Topic: message queuing


view this post on Zulip Brett Esler (Jun 01 2016 at 10:29):

hi all - looking at using FHIR based implementation of a message queue/mailbox as a specific recipient List of Bundles (messages) - so would poll and pop messages on delivery. Is there a better way or any thoughts on how to?

view this post on Zulip Michel Rutten (Jun 01 2016 at 10:55):

@Brett Esler instead of polling, you might also be able to leverage subscription:
https://www.hl7.org/fhir/subscription.html

view this post on Zulip Grahame Grieve (Jun 01 2016 at 11:37):

brett, do consider the async pattern associated with message delivery

view this post on Zulip Lloyd McKenzie (Jun 01 2016 at 17:08):

I'm doing the same right now. We're just doing a RESTful POST of messages to the Bundle endpoint (mailbox). Receiver queries the endpoint, then deletes messages once they have custody. Functions out-of-the-box using pure REST.

view this post on Zulip Grahame Grieve (Jun 01 2016 at 22:50):

yes that will work too

view this post on Zulip Brett Esler (Jun 01 2016 at 23:47):

Thanks all - most helpful

view this post on Zulip Brian Postlethwaite (Jun 06 2016 at 02:01):

@Brett Esler, So this is more-or-less the SMD gateway functionality for retrieving messages?

view this post on Zulip Brett Esler (Jun 06 2016 at 02:08):

@Brian Postlethwaite yes heading that way; at the moment planning for a sender to just hold a queue for delivery- but expect a full interemediary might be useful - but it might look more like a pub-sub-hub

view this post on Zulip Brett Esler (Jun 06 2016 at 03:01):

@Brian Postlethwaite yes that is it for now...


Last updated: Apr 12 2022 at 19:14 UTC