You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: org.osgi.service.messaging/src/main/java/org/osgi/service/messaging/replyto/ReplyToSubscriptionHandler.java
+8-2
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,18 @@
2
2
3
3
importorg.osgi.service.messaging.Message;
4
4
5
+
/**
6
+
* The {@code ReplyToSubscriptionHandler} interface defines a handler for processing
7
+
* incoming response messages in a reply-to messaging pattern. Implementations of this
8
+
* interface are responsible for handling and processing the {@link Message} received
9
+
* as a response to a previously sent request.
10
+
*/
5
11
publicinterfaceReplyToSubscriptionHandler {
6
12
7
13
/**
8
-
* Just handles the incoming request {@link Message}.
14
+
* Handles the incoming response {@link Message}.
9
15
*
10
-
* @param requestMessage the {@link Message}
16
+
* @param requestMessage the {@link Message} to be processed
0 commit comments