@FunctionalInterface public interface Handler<E>
This interface is used heavily throughout Vert.x as a handler for all types of asynchronous occurrences.
Modifier and Type | Method and Description |
---|---|
void |
handle(E event)
Something has happened, so handle it.
|
void handle(E event)
event
- the event to handleCopyright © 2022 Eclipse. All rights reserved.