|
JBoss Modular Service Kernel API 1.0.0.CR2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.jboss.msc.service.AbstractService<T>
T - the value typepublic abstract class AbstractService<T>

An abstract service class which provides default implementations.
| Field Summary |
|---|
| Fields inherited from interface org.jboss.msc.service.Service |
|---|
NULL, NULL_VALUE |
| Constructor Summary | |
|---|---|
AbstractService()
|
|
| Method Summary | |
|---|---|
T |
getValue()
Get the actual value. |
void |
start(StartContext context)
Start the service. |
void |
stop(StopContext context)
Stop the service. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AbstractService()
| Method Detail |
|---|
public void start(StartContext context)
throws StartException
If the service start involves any activities that may block, the asynchronous mechanism
provided by the context should be used. See the class javadoc for details. This implementation does nothing.
start in interface Service<T>context - the context which can be used to trigger an asynchronous service start
StartException - if the service could not be started for some reasonpublic void stop(StopContext context)
If the service start involves any activities that may block, the asynchronous mechanism
provided by the context should be used. See the class javadoc for details. This implementation does nothing.
stop in interface Service<T>context - the context which can be used to trigger an asynchronous service stop
public T getValue()
throws IllegalStateException
null.
getValue in interface Value<T>IllegalStateException - if the value is time-sensitive and the current state does not allow retrieval.
|
JBoss Modular Service Kernel API 1.0.0.CR2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||