Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


com.tangosol.net.events
Class BackingMapDispatcher.EntryEvent.Type

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

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

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

The BackingMapDispatcher.EntryEvent types.

See Also:
Serialized Form

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

 

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

 

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

 

Field Detail

INSERTING

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

The following holds:


INSERTED

public static final BackingMapDispatcher.EntryEvent.Type INSERTED
This BackingMapDispatcher.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 BackingMapDispatcher.EntryEvent.Type UPDATING
This BackingMapDispatcher.EntryEvent is dispatched before a BinaryEntry is updated in backing-map.

The following holds:


UPDATED

public static final BackingMapDispatcher.EntryEvent.Type UPDATED
This BackingMapDispatcher.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 BackingMapDispatcher.EntryEvent.Type REMOVING
This BackingMapDispatcher.EntryEvent is dispatched before a BinaryEntry has been removed from backing-map.

The following holds:


REMOVED

public static final BackingMapDispatcher.EntryEvent.Type REMOVED
This BackingMapDispatcher.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 BackingMapDispatcher.EntryEvent.Type[] values()

valueOf

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

Skip navigation links

Oracle® Coherence Java API Reference
Release 3.7.1.0

E22843-01


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