public static interface OpModeManagerNotifier.Notifications
OpModeManagerNotifier.Notifications
can be used to receive notifications of the comings
and goings of opmodes in the system. These notifications are sent to any
HardwareDevice
in the hardware map that additional implements the
OpModeManagerNotifier.Notifications
interface. Notifications may also be received by objects
that register themselves with the OpMode manager.Modifier and Type | Method and Description |
---|---|
void |
onOpModePostStop(OpMode opMode)
The indicated opmode has just been stopped.
|
void |
onOpModePreInit(OpMode opMode)
The indicated opmode is just about to be initialized.
|
void |
onOpModePreStart(OpMode opMode)
The indicated opmode is just about to be started.
|
void onOpModePreInit(OpMode opMode)
void onOpModePreStart(OpMode opMode)
void onOpModePostStop(OpMode opMode)