Vladimir Steshin created IGNITE-26568:
-----------------------------------------
Summary: Remove CacheEntryInfoCollection
Key: IGNITE-26568
URL: https://issues.apache.org/jira/browse/IGNITE-26568
Project: Ignite
Issue Type: Improvement
Reporter: Vladimir Steshin
_CacheEntryInfoCollection_ is used only as a holder of
{code:java}
List<GridCacheEntryInfo> {code}
inĀ {_}GridDhtPartitionSupplyMessage{_}. Probably, we should be able to write
and read Map of collection, lists as values in _MessageSerializerGenerator._
This would allow us to use something like
{code:java}
@Order(8)
private Map<Integer, List<GridCacheEntryInfo>> infos;{code}
in _GridDhtPartitionSupplyMessage_ instead of
{code:java}
@Order(8)
private Map<Integer, CacheEntryInfoCollection> infos; {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)