shishkovilja commented on code in PR #13095:
URL: https://github.com/apache/ignite/pull/13095#discussion_r3638204125
##########
modules/core/src/main/java/org/apache/ignite/internal/managers/communication/GridIoManager.java:
##########
@@ -1450,11 +1469,22 @@ private void processRegularMessage0(GridIoMessage msg,
UUID nodeId) {
if (lsnr == null)
return;
- Object obj = msg.message();
+ unmarshalPayload(msg);
- assert obj != null;
+ invokeListener(msg.policy(), lsnr, nodeId, msg.message());
+ }
- invokeListener(msg.policy(), lsnr, nodeId, obj);
+ /** */
+ private void unmarshalPayload(GridIoMessage msg) {
+ if (msg.message() instanceof DeferredUnmarshalMessage)
Review Comment:
Where `DeferredUnmarshalMessage` will be unmarhalled then?
--
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]