nizhikov commented on code in PR #12015: URL: https://github.com/apache/ignite/pull/12015#discussion_r2063353203
########## modules/core/src/main/java/org/apache/ignite/internal/binary/GridBinaryMarshaller.java: ########## @@ -291,6 +297,84 @@ public byte[] marshal(@Nullable Object obj, boolean failIfUnregistered) throws B } } + /** + * @param in Input stream. + * @param clazz input object class. + * @return Binary object. + * @throws org.apache.ignite.binary.BinaryObjectException In case of error. + */ + @Nullable public <T> T unmarshal(BinaryInputStream in, Class<?> clazz) throws BinaryObjectException { Review Comment: Let's keep naming from ClientUtils. unmarshal -> unwrapBinary -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org