Interface LaunchablePlugin

All Superinterfaces:
Plugin

public interface LaunchablePlugin extends Plugin
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Some environments have requirements regarding the main application thread and processing on it.
    void
    Invoked before core is started to set defaults such as application details

    Methods inherited from interface com.biglybt.pif.Plugin

    getInitialProperties, initialize
  • Method Details

    • setDefaults

      void setDefaults(String[] args)
      Invoked before core is started to set defaults such as application details
    • process

      boolean process()
      Some environments have requirements regarding the main application thread and processing on it. In particular SWT on OSX insists that the SWT dispatch thread. When this thread is returned from the client is either stopper or restarted, depending on the return value
      Returns:
      whether to close down or restart (true->restart)