CTX
- the context used to initialize the implementing instance.public class ConfigurableLifeCycleAutomatonImpl<CTX> extends Object implements ConfigurableLifeCycleComponent.ConfigurableLifeCycleAutomaton<CTX>
ConfigurableLifeCycleComponent.ConfigurableLifeCycleAutomaton
.ConfigurableLifeCycleComponent.ConfigurableLifeCycleAutomaton<CTX>
Configurable.ConfigureAutomaton<CTX>
InitializedAccessor.InitializedMutator, InitializedAccessor.InitializedProperty
Startable.StartAutomaton
Pausable.PauseAutomaton
Resumable.ResumeAutomaton
RunningAccessor.RunningMutator, RunningAccessor.RunningProperty
Stoppable.StopAutomaton
Destroyable.DestroyAutomaton
LifeCycleStatusAccessor.LifeCycleStatusMutator, LifeCycleStatusAccessor.LifeCycleStatusProperty
Constructor and Description |
---|
ConfigurableLifeCycleAutomatonImpl()
Empty constructor, such
LifeCycleComponent.LifeCycleAutomaton cannot do much more
than decline the various LifeCycleStatus states for you. |
ConfigurableLifeCycleAutomatonImpl(ConfigurableLifeCycleComponent<CTX> aLifeConfigurableCycleComponent)
This constructor uses a
LifeCycleStatus for wrapping it inside
the ConfigurableLifeCycleAutomatonImpl , making sure of obeying
and guarding the correct LifeCycleStatus 's order of
LifeCycleStatus states for you. |
Modifier and Type | Method and Description |
---|---|
void |
destroy()
Destroys the component.
|
protected ConfigurableLifeCycleComponent<CTX> |
getLifeCycleComponent()
Provides access to the
LifeCycleComponent instance. |
LifeCycleStatus |
getLifeCycleStatus()
Retrieves the
LifeCycleStatus property from the property. |
void |
initialize(CTX aContext)
Initializes and configures the component.
|
boolean |
isDestroyable()
Determines whether the component may get destroyed.
|
boolean |
isDestroyed()
Determines whether the component is destroyed.
|
boolean |
isInitalizable(CTX aContext)
Determines whether the component may get initialized.
|
boolean |
isInitialized()
Retrieves the is-initialized property from the initialized property.
|
boolean |
isPausable()
Determines whether the component may get paused.
|
boolean |
isPaused()
Determines whether the component is paused.
|
boolean |
isResumable()
Determines whether the component may get resumed.
|
boolean |
isRunning()
Retrieves the is-running property from the running property.
|
boolean |
isStartable()
Determines whether the component may get started.
|
boolean |
isStoppable()
Determines whether the component may get stopped.
|
boolean |
isStopped()
Determines whether the component is stopped.
|
void |
pause()
Pauses the component.
|
void |
resume()
Resumes the component.
|
void |
start()
Starts the component.
|
void |
stop()
Stops the component.
|
public ConfigurableLifeCycleAutomatonImpl()
LifeCycleComponent.LifeCycleAutomaton
cannot do much more
than decline the various LifeCycleStatus
states for you.public ConfigurableLifeCycleAutomatonImpl(ConfigurableLifeCycleComponent<CTX> aLifeConfigurableCycleComponent)
LifeCycleStatus
for wrapping it inside
the ConfigurableLifeCycleAutomatonImpl
, making sure of obeying
and guarding the correct LifeCycleStatus
's order of
LifeCycleStatus
states for you.aLifeConfigurableCycleComponent
- The component to be guarded
regarding the correct declination of the LifeCycleStatus
states.public LifeCycleStatus getLifeCycleStatus()
LifeCycleStatus
property from the property.
Determines in which LifeCycleStatus
status a component is in.getLifeCycleStatus
in interface LifeCycleStatusAccessor
LifeCycleStatus
property stored by the
property.public void initialize(CTX aContext) throws ConfigureException
initialize
in interface Configurable<CTX>
aContext
- The context to be passed to the implementing instance.ConfigureException
- Thrown in case initializing fails.public boolean isInitalizable(CTX aContext)
isInitalizable
in interface Configurable.ConfigureAutomaton<CTX>
aContext
- The context to be passed to the implementing
instance.#initialize()
is possible.public boolean isInitialized()
Initializeable.initialize()
or
Configurable.initialize(Object)
.isInitialized
in interface InitializedAccessor
public boolean isStartable()
isStartable
in interface Startable.StartAutomaton
Startable.start()
is possible.public void start() throws StartException
start
in interface Startable
StartException
- Thrown in case starting fails.public boolean isRunning()
Startable.start()
or
Resumable.resume()
.isRunning
in interface RunningAccessor
public boolean isPausable()
isPausable
in interface Pausable.PauseAutomaton
Pausable.pause()
is possible.public void pause() throws PauseException
pause
in interface Pausable
PauseException
- in case pausing fails.public boolean isPaused()
isPaused
in interface Pausable.PauseAutomaton
public boolean isResumable()
isResumable
in interface Resumable.ResumeAutomaton
Resumable.resume()
is possible.public void resume() throws ResumeException
resume
in interface Resumable
ResumeException
- Thrown in case resuming fails.public boolean isStoppable()
isStoppable
in interface Stoppable.StopAutomaton
Stoppable.stop()
is possible.public void stop() throws StopException
stop
in interface Stoppable
StopException
- Thrown in case stopping fails.public boolean isStopped()
isStopped
in interface Stoppable.StopAutomaton
public boolean isDestroyable()
isDestroyable
in interface Destroyable.DestroyAutomaton
Destroyable.destroy()
is possible.public void destroy()
Component
has been destroyed, then invoking any of that
Component
instance's methods (except the Destroyable.destroy()
method) must throw an IllegalStateException
as by definition a
once destroyed Component
is in the state of being destroyed which
is irreversible.destroy
in interface Destroyable
public boolean isDestroyed()
Component
instance's methods
(except the Destroyable.destroy()
method) must throw an
IllegalStateException
as by definition a once destroyed
Component
is in the state of being destroyed which is
irreversible.isDestroyed
in interface Destroyable.DestroyAutomaton
protected ConfigurableLifeCycleComponent<CTX> getLifeCycleComponent()
LifeCycleComponent
instance.LifeCycleComponent
instance being set.Copyright © 2015. All rights reserved.