Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


com.tangosol.net.events.partition.cache
Class EntryEvent.Type

java.lang.Object
  extended by java.lang.Enum
      extended by com.tangosol.net.events.partition.cache.EntryEvent.Type

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable
Enclosing interface:
EntryEvent

public static final class EntryEvent.Type
extends java.lang.Enum

The EntryEvent types.


Field Summary
static EntryEvent.Type INSERTED
          This EntryEvent is dispatched after one or more BinaryEntry(s) have been inserted into the backing-map.
static EntryEvent.Type INSERTING
          This EntryEvent is dispatched before one or more BinaryEntry(s) are inserted into the backing-map.
static EntryEvent.Type REMOVED
          This EntryEvent is dispatched after one or more BinaryEntry(s) have been removed from the backing-map.
static EntryEvent.Type REMOVING
          This EntryEvent is dispatched before a BinaryEntry has been removed from backing-map.
static EntryEvent.Type UPDATED
          This EntryEvent is dispatched after one or more BinaryEntry(s) have been updated in the backing-map.
static EntryEvent.Type UPDATING
          This EntryEvent is dispatched before a BinaryEntry is updated in backing-map.

 

Method Summary
static EntryEvent.Type valueOf(java.lang.String name)
           
static EntryEvent.Type[] values()
           

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Field Detail

INSERTING

public static final EntryEvent.Type INSERTING
This EntryEvent is dispatched before one or more BinaryEntry(s) are inserted into the backing-map.

The following holds:


INSERTED

public static final EntryEvent.Type INSERTED
This EntryEvent is dispatched after one or more BinaryEntry(s) have been inserted into the backing-map. This event is raised after the insert has been committed. The BinaryEntry(s) provided for this event type are immutable. For a given BinaryEntry, events will be raised in the same order as the changes occurred.

UPDATING

public static final EntryEvent.Type UPDATING
This EntryEvent is dispatched before a BinaryEntry is updated in backing-map.

The following holds:


UPDATED

public static final EntryEvent.Type UPDATED
This EntryEvent is dispatched after one or more BinaryEntry(s) have been updated in the backing-map. This event is raised after the update has been committed. The BinaryEntry(s) provided for this event type are immutable. For a given BinaryEntry, events will be raised in the same order as the changes occurred.

REMOVING

public static final EntryEvent.Type REMOVING
This EntryEvent is dispatched before a BinaryEntry has been removed from backing-map.

The following holds:


REMOVED

public static final EntryEvent.Type REMOVED
This EntryEvent is dispatched after one or more BinaryEntry(s) have been removed from the backing-map. This event is raised after the removal has been committed. The BinaryEntry(s) provided for this event type are immutable. For a given BinaryEntry, events will be raised in the same order as the changes occurred.

Method Detail

values

public static EntryEvent.Type[] values()

valueOf

public static EntryEvent.Type valueOf(java.lang.String name)

Skip navigation links

Oracle® Coherence Java API Reference
Release 12.1.2.0.3

E26043-02


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.