Class EventDeliveryExceptionHandler<K,V>

java.lang.Object
com.scaleout.client.caching.EventDeliveryExceptionHandler<K,V>

public abstract class EventDeliveryExceptionHandler<K,V> extends Object
The EventDeliveryExceptionHandler is used to deliver exceptions that were unhandled in user code during backing store operations. For example, if a unhandled serialization exception occurs during the load method the eventDeliveryException method will be called.
  • Constructor Details

    • EventDeliveryExceptionHandler

      public EventDeliveryExceptionHandler()
      Default constructor.
  • Method Details

    • onException

      public abstract void onException(EventDeliveryExceptionArgs<K,V> args)
      This method is called when an unhandled exception occurs during any backing store operation.
      Parameters:
      args - object that contains the Cache, Key, and Exception that occurred.