Vladsz83 commented on code in PR #12581:
URL: https://github.com/apache/ignite/pull/12581#discussion_r2619864039
##########
modules/core/src/main/java/org/apache/ignite/plugin/extensions/communication/MessageWriter.java:
##########
@@ -292,6 +293,16 @@ public default void setBuffer(ByteBuffer buf) {
*/
public <T> boolean writeCollection(Collection<T> col,
MessageCollectionItemType itemType);
+ /**
+ * Writes set with its elements order.
+ *
+ * @param set Set.
+ * @param itemType Set item type.
+ * @param <T> Type of the objects that set contains.
+ * @return Whether value was fully written.
+ */
+ public <T> boolean writeSet(Set<T> set, MessageCollectionItemType
itemType);
Review Comment:
Is required by the message serializer
--
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]