Alanxtl commented on code in PR #3440:
URL: https://github.com/apache/dubbo-go/pull/3440#discussion_r3540938489
##########
remoting/exchange.go:
##########
@@ -184,6 +184,12 @@ func removePendingResponse(seq SequenceType)
*PendingResponse {
return nil
}
+// RemovePendingResponse removes and returns the pending response for the
given sequence ID.
+// It is the exported version of removePendingResponse for use by external
packages.
+func RemovePendingResponse(seq SequenceType) *PendingResponse {
+ return removePendingResponse(seq)
+}
+
Review Comment:
包裹一个这个函数有啥意义吗
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]