public interface StartListener
start()
method.
To register a StartListener
, declare it as a service provider (see ServiceLoader
). Place a file named
com.is2t.hil.StartListener
in the resource directory META-INF/services
. This file must contains
a list of fully-qualified names of concrete provider classes, one per line.
Modifier and Type | Method and Description |
---|---|
void |
start()
Called when the simulator is starting.
|