Interface DaemonContext

All Known Implementing Classes:
DaemonLoader.Context

public interface DaemonContext
Defines a set of methods that a Daemon instance can use to communicate with the Daemon container.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets an array of String arguments supplied by the environment corresponding to the array of arguments given in the public static void main() method used as an entry point to most other Java programs.
    Gets a DaemonController object that can be used to control the Daemon instance that this DaemonContext is passed to.
  • Method Details

    • getController

      Gets a DaemonController object that can be used to control the Daemon instance that this DaemonContext is passed to.
      Returns:
      A DaemonController object that can be used to control the Daemon.
    • getArguments

      Gets an array of String arguments supplied by the environment corresponding to the array of arguments given in the public static void main() method used as an entry point to most other Java programs.
      Returns:
      An array of String arguments supplied by the environment.