Kryo: set next registration id for local types registered in ECMapImpl
Change-Id: I9483f3b302224f3eb9dbd4e6dfb98a54143e3243
Showing
1 changed file
with
1 additions
and
0 deletions
| ... | @@ -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) | ... | ... |
-
Please register or login to post a comment