Vadim Kolodin created IGNITE-26985:
--------------------------------------
Summary: Java records support in marshallers
Key: IGNITE-26985
URL: https://issues.apache.org/jira/browse/IGNITE-26985
Project: Ignite
Issue Type: Improvement
Reporter: Vadim Kolodin
Assignee: Vadim Kolodin
Support java records in ignite APIs on java 14+ runtime.
Ignite target should remain java 11.
{code:java}
// e.g.
Table table = ignite.tables().table("table");
table.recordView(Rec.class);
table.keyValueView(Integer.class, Val.class)
record Rec(@Column("key") Integer key, @Column("val") String val) {}
record Val(@Column("val") String val) {}{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)