Interface FunctionalityReadyNotifier
-
- All Known Implementing Classes:
FunctionalityReadyNotifierImpl
public interface FunctionalityReadyNotifier
Service to registerFunctionalityReady
markers.- Author:
- Michael Vorburger.ch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends FunctionalityReady>
FunctionalityReadyRegistration<T>register(Class<T> markerInterface)
Register aFunctionalityReady
marker.
-
-
-
Method Detail
-
register
<T extends FunctionalityReady> FunctionalityReadyRegistration<T> register(Class<T> markerInterface)
Register aFunctionalityReady
marker.- Parameters:
markerInterface
- the marker FunctionalityReady marker interface- Returns:
- the
FunctionalityReadyRegistration
which allows toFunctionalityReadyRegistration.unregister()
the marker - See Also:
FunctionalityReady
-
-