Skip to content

Commit dce333d

Browse files
committed
Added missing comments to ReplyToSubscriptionHandler
1 parent a3f4f87 commit dce333d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

org.osgi.service.messaging/src/main/java/org/osgi/service/messaging/replyto/ReplyToSubscriptionHandler.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22

33
import org.osgi.service.messaging.Message;
44

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+
*/
511
public interface ReplyToSubscriptionHandler {
612

713
/**
8-
* Just handles the incoming request {@link Message}.
14+
* Handles the incoming response {@link Message}.
915
*
10-
* @param requestMessage the {@link Message}
16+
* @param requestMessage the {@link Message} to be processed
1117
*/
1218
void handleResponse(Message requestMessage);
1319

0 commit comments

Comments
 (0)