I have a question, i was reading a little bit about JMS but I couldn't understand when it's best to use synchronic message over asynchronic and when it's best to use asynchronic message over synchronic.
Can someone make it clear?
thanks.
|
|
|
You use synchronous messaging when the turnaround time is acceptably short enough (or important enough) that your clients can (or must) wait for the response to come back. If the processing time required to produce the response is too long, or not important enough, or if the client would rather just check back for the response later, then it's possible to use asynchronous messaging. |
|||
|
|