Handler

public interface Handler<T>

Functional interface representing a handler for events of type T.

Parameters

<T>

the type of the event to be handled

Functions

Link copied to clipboard
public abstract void handle(T event)
Handles the given event.