com.github.dxee.dject.event.ApplicationEventRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dject-event Show documentation
Show all versions of dject-event Show documentation
A collection of guice extensions, help to improve the developer experience of guice.
package com.github.dxee.dject.event;
/**
* Interface to unregistering a subscriber to events. Returned from {@link ApplicationEventDispatcher}
* whenever a received is programmatically registered.
*/
public interface ApplicationEventRegistration {
void unregister();
}