-
public class LiveMapUpdate extends ObjectUpdate
Represents an update that occurred on a LiveMap object. Contains information about which keys were modified and whether they were updated or removed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumLiveMapUpdate.ChangeIndicates the type of change that occurred to a map key.
-
Constructor Summary
Constructors Constructor Description LiveMapUpdate()Creates a no-op LiveMapUpdate representing no actual change. LiveMapUpdate(Map<String, LiveMapUpdate.Change> update)Creates a LiveMapUpdate with the specified key changes.
-
Method Summary
-
-
Constructor Detail
-
LiveMapUpdate
LiveMapUpdate()
Creates a no-op LiveMapUpdate representing no actual change.
-
LiveMapUpdate
LiveMapUpdate(Map<String, LiveMapUpdate.Change> update)
Creates a LiveMapUpdate with the specified key changes.- Parameters:
update- map of key names to their change types (UPDATED or REMOVED)
-
-
-
-