...
Info | ||
---|---|---|
| ||
When writing asynchronous Java components, it is important to remember the @OneWay annotation. If a method is not marked with @OneWay, it will be taken as a request-response operation even if the return value is void. This means the operation will block until a response message is received. |
Configuring request-response operations involves specifying a separate response queue in addition to the forward queue:
...