com.alachisoft.ncache.web.caching
Class CustomEventCallback

java.lang.Object
  extended by com.alachisoft.ncache.web.caching.CustomEventCallback

public class CustomEventCallback
extends java.lang.Object

Defines a callback method for custom application defined events.

 Doing a lot of processing inside the handler might have an impact on the performance
 of the cache and cluster. It is therefore advisable to do minimal processing inside the handler.
 


Field Summary
static int BOTH
          User specified both remove and update callbacks..
static int NONE
          User didnot specified any callback.
static int REMOVE
          User specified only remove callback.
static int UPDATE
          User specified only update callback.
 
Constructor Summary
CustomEventCallback()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BOTH

public static final int BOTH
User specified both remove and update callbacks..

See Also:
Constant Field Values

NONE

public static final int NONE
User didnot specified any callback.

See Also:
Constant Field Values

REMOVE

public static final int REMOVE
User specified only remove callback.

See Also:
Constant Field Values

UPDATE

public static final int UPDATE
User specified only update callback.

See Also:
Constant Field Values
Constructor Detail

CustomEventCallback

public CustomEventCallback()