Package org.refcodes.component
Interface ConfigurableLifeCycleComponentHandle<H,CTX>
-
- Type Parameters:
H- The type of the handles.CTX- The context used to initialize the referenced instance.
- All Superinterfaces:
ConfigurableHandle<H,CTX>,DestroyableHandle<H>,PausableHandle<H>,ResumableHandle<H>,StartableHandle<H>,StoppableHandle<H>
- All Known Subinterfaces:
ConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandle<H,CTX>
public interface ConfigurableLifeCycleComponentHandle<H,CTX> extends ConfigurableHandle<H,CTX>, StartableHandle<H>, PausableHandle<H>, ResumableHandle<H>, StoppableHandle<H>, DestroyableHandle<H>
TheConfigurableLifeCycleComponentHandlemanages variousLifeCycleStatusstates forConfigurableLifeCycleComponentinstances each related to a handle. Operations manipulating on theLifeCycleStatusare invoked by thisConfigurableLifeCycleComponentHandlewith a handle identifying the according referencedConfigurableLifeCycleComponent.The
ConfigurableLifeCycleComponentcontains the business-logic where as theConfigurableLifeCycleComponentHandleprovides the frame for managing this business-logic. TheLifeCycleComponentHandle.LifeCycleAutomatonHandletakes care of the correct life-cycle applied on aConfigurableLifeCycleComponent.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandle<H,CTX>TheConfigurableLifeCycleComponentHandle.ConfigurableLifeCycleAutomatonHandleis an automaton managing variousLifeCycleStatusstates forComponentinstances each related to a handle.-
Nested classes/interfaces inherited from interface org.refcodes.component.ConfigurableHandle
ConfigurableHandle.ConfigureAutomatonHandle<H,CTX>
-
Nested classes/interfaces inherited from interface org.refcodes.component.DestroyableHandle
DestroyableHandle.DestroyAutomatonHandle<H>
-
Nested classes/interfaces inherited from interface org.refcodes.component.PausableHandle
PausableHandle.PauseAutomatonHandle<H>
-
Nested classes/interfaces inherited from interface org.refcodes.component.ResumableHandle
ResumableHandle.ResumeAutomatonHandle<H>
-
Nested classes/interfaces inherited from interface org.refcodes.component.StartableHandle
StartableHandle.StartAutomatonHandle<H>
-
Nested classes/interfaces inherited from interface org.refcodes.component.StoppableHandle
StoppableHandle.StopAutomatonHandle<H>
-
-
Method Summary
-
Methods inherited from interface org.refcodes.component.ConfigurableHandle
hasConfigurable, initialize, initializeUnchecked
-
Methods inherited from interface org.refcodes.component.DestroyableHandle
destroy, hasDestroyable
-
Methods inherited from interface org.refcodes.component.PausableHandle
hasPausable, pause, pauseUnchecked
-
Methods inherited from interface org.refcodes.component.ResumableHandle
hasResumable, resume, resumeUnchecked
-
Methods inherited from interface org.refcodes.component.StartableHandle
hasStartable, start, startUnchecked
-
Methods inherited from interface org.refcodes.component.StoppableHandle
hasStoppable, stop, stopUnchecked
-
-