Package org.togglz.core.spi
Interface FeatureManagerListener
-
- All Superinterfaces:
Weighted
public interface FeatureManagerListener extends Weighted
Implementations of this SPI will be notified when theFeatureManageris created and before it is shut down.- Author:
- Christian Kaltepoth
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.togglz.core.util.Weighted
Weighted.WeightedComparator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart(FeatureManager featureManager)Called after theFeatureManagerfor the application has been created.voidstop(FeatureManager featureManager)Called before theFeatureManagerof the application is destroyed.
-
-
-
Method Detail
-
start
void start(FeatureManager featureManager)
Called after theFeatureManagerfor the application has been created.
-
stop
void stop(FeatureManager featureManager)
Called before theFeatureManagerof the application is destroyed.
-
-