Package org.apache.commons.daemon
Interface DaemonContext
-
- All Known Implementing Classes:
DaemonLoader.Context
public interface DaemonContextDefines a set of methods that a Daemon instance can use to communicate with the Daemon container.- Version:
- $Id: DaemonContext.java 1204006 2011-11-19 16:09:15Z ggregory $
- Author:
- Pier Fumagalli
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]getArguments()Returns an array ofStringarguments supplied by the environment.DaemonControllergetController()ReturnsDaemonControllerobject that can be used to control theDaemoninstance that thisDaemonContextis passed to.
-
-
-
Method Detail
-
getController
DaemonController getController()
ReturnsDaemonControllerobject that can be used to control theDaemoninstance that thisDaemonContextis passed to.
-
getArguments
java.lang.String[] getArguments()
Returns an array ofStringarguments supplied by the environment. corresponding to the array of arguments given in thepublic static void main()method used as an entry point to most other java programs.
-
-