Class FunctionalityReadyNotifierImpl
- java.lang.Object
-
- org.opendaylight.infrautils.ready.karaf.internal.FunctionalityReadyNotifierImpl
-
- All Implemented Interfaces:
FunctionalityReadyNotifier
@Singleton public class FunctionalityReadyNotifierImpl extends Object implements FunctionalityReadyNotifier
Implementation ofFunctionalityReadyNotifier
.- Author:
- Michael Vorburger.ch
-
-
Constructor Summary
Constructors Constructor Description FunctionalityReadyNotifierImpl(org.osgi.framework.BundleContext bundleContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends FunctionalityReady>
FunctionalityReadyRegistration<T>register(Class<T> markerInterface)
Register aFunctionalityReady
marker.
-
-
-
Method Detail
-
register
public <T extends FunctionalityReady> FunctionalityReadyRegistration<T> register(Class<T> markerInterface)
Description copied from interface:FunctionalityReadyNotifier
Register aFunctionalityReady
marker.- Specified by:
register
in interfaceFunctionalityReadyNotifier
- Parameters:
markerInterface
- the marker FunctionalityReady marker interface- Returns:
- the
FunctionalityReadyRegistration
which allows toFunctionalityReadyRegistration.unregister()
the marker - See Also:
FunctionalityReady
-
-