Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 3 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.