Package com.biglybt.pif
Interface LaunchablePlugin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
process()
Some environments have requirements regarding the main application thread and processing on it.void
setDefaults(java.lang.String[] args)
Invoked before core is started to set defaults such as application details-
Methods inherited from interface com.biglybt.pif.Plugin
getInitialProperties, initialize
-
-
-
-
Method Detail
-
setDefaults
void setDefaults(java.lang.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)
-
-