AbstractDataHandler

public abstract class AbstractDataHandler<DataType> implements Handler

A handler that receives the user payload of an event by extracting the data and casting them to the specified type.

Author

swrede

Parameters

<DataType> – the desired target data type of the user handler. The event payload will be casted to this type

Methods

handleEvent

public abstract void handleEvent(DataType data)

Called with the extracted data.

Parameters

data – data contained in the event to handle

Throws

InterruptedException – Execution of the handler operation was interrupted

internalNotify

public void internalNotify(Event event)