EventHandler

Inheritance: java.lang.Object, com.groupdocs.search.common.Delegate, com.groupdocs.search.common.MulticastDelegate

public abstract class EventHandler<T> extends MulticastDelegate

Represents the base class of an event handler.

Constructors

Constructor Description
EventHandler()

Methods

Method Description
invoke(Object sender, T args) Starts handling of the event.

EventHandler()

public EventHandler()

invoke(Object sender, T args)

public abstract void invoke(Object sender, T args)

Starts handling of the event.

Parameters:

Parameter Type Description
sender java.lang.Object The sender of the event.
args T Arguments of the event.