Interface ProcessLifecycle


@Published(tag="architect") public interface ProcessLifecycle
アプリケーション起動を実装するためのインタフェース。
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    本処理を行う。
    void
    初期化処理を行う。
    void
    プロセス停止が呼ばれた際のフック。
    void
    コマンドライン引数を設定する。
    void
    終了処理を行う。
  • Method Details

    • initialize

      void initialize()
      初期化処理を行う。
    • execute

      void execute()
      本処理を行う。
    • onVirtualMachineShutdown

      void onVirtualMachineShutdown()
      プロセス停止が呼ばれた際のフック。
      See Also:
    • terminate

      void terminate()
      終了処理を行う。
    • setCommandLine

      void setCommandLine(CommandLine commandLine)
      コマンドライン引数を設定する。
      Parameters:
      commandLine - コマンドライン引数