Package 

Interface EventMapper


  • 
    public interface EventMapper<T extends Object>
    
                        

    An interface which can be implemented to modify the writable attributes inside an event T.

    • Method Summary

      Modifier and Type Method Description
      abstract T map(T event) By implementing this method you can intercept and modify the writable attributes inside any event T before it gets serialised.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • map

         abstract T map(T event)

        By implementing this method you can intercept and modify the writable attributes inside any event T before it gets serialised.

        Parameters:
        event - the event to be serialised