Class EntryEventMessagePayload<K,V>

java.lang.Object
org.springframework.integration.hazelcast.message.EntryEventMessagePayload<K,V>
Type Parameters:
K - the entry key type
V - the entry value type

public class EntryEventMessagePayload<K,V> extends Object
Hazelcast Message Payload for Entry Events.
Since:
6.0
Author:
Eren Avsarogullari, Artem Bilan
  • Field Details

    • key

      public final K key
      The entry key.
    • value

      public final V value
      The entry value.
    • oldValue

      public final V oldValue
      The entry old value if any.
  • Constructor Details

    • EntryEventMessagePayload

      public EntryEventMessagePayload(K key, V value, V oldValue)
  • Method Details