A generic event handler. This interface is used heavily throughout Vert.x as a handler for all types of asynchronous occurrences. @author Tim Fox
| 20 | * @author <a href="http://tfox.org">Tim Fox</a> |
| 21 | */ |
| 22 | @FunctionalInterface |
| 23 | public interface Handler<E> { |
| 24 | |
| 25 | /** |
| 26 | * Something has happened, so handle it. |
| 27 | * |
| 28 | * @param event the event to handle |
| 29 | */ |
| 30 | void handle(E event); |
| 31 | } |
no outgoing calls
no test coverage detected