The examples below use Unirest's Java synchronous method calls, this is done as it helps to keep the example short and succinct. However when implementing the calls into your application we recommend the use of the asynchronous methods, this is especially important if you are expecting to move a large volume of messages.
1. Send HealthBus message with attachments
2. Retrieve HealthBus message, its attachments and finally delete message and its attachments
The retrieve message processing assumes you have two important pieces of information, the Message ID and the address of where the message is from. We offer two primary ways to get this information, either we'll call you and provide the information so you can retrieve your message or you can call us and we'll tell you if there are any messages waiting for you. ie. either we'll push notifications to you or you can poll us for notifications.
In the case of push notifications you'll need to provide an HTTPS endpoint for the RosettaHealth service to call you on. Our recommendation is to submit the notification to an MQ and for example have a consumer handle the logic detailed above in 2. retrieve message, attachment and delete message.
3. Push notification
For polled notifications we recommend something like the following run as a background task periodically polling the RosettaHealth service for new notifications. When it comes to retrieving the message and its attachments for a particular user, please see code above in 2. retrieve message, attachment and delete message.
4. Polled notification