Madan Jampani

Kryo: set next registration id for local types registered in ECMapImpl

Change-Id: I9483f3b302224f3eb9dbd4e6dfb98a54143e3243
...@@ -244,6 +244,7 @@ public class EventuallyConsistentMapImpl<K, V> ...@@ -244,6 +244,7 @@ public class EventuallyConsistentMapImpl<K, V>
244 // Add the map's internal helper classes to the user-supplied serializer 244 // Add the map's internal helper classes to the user-supplied serializer
245 serializerPool = builder 245 serializerPool = builder
246 .register(KryoNamespaces.BASIC) 246 .register(KryoNamespaces.BASIC)
247 + .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
247 .register(LogicalTimestamp.class) 248 .register(LogicalTimestamp.class)
248 .register(WallClockTimestamp.class) 249 .register(WallClockTimestamp.class)
249 .register(AntiEntropyAdvertisement.class) 250 .register(AntiEntropyAdvertisement.class)
......