SequenceHandlerpublic interface SequenceHandler The SequenceHandler interface is used by the AutomationHandler
to perform a callbacks which pertain to certain 'hotkey'
executions, such as ending an event sequence or capturing the
current screen contents. |
Methods Summary |
---|
public void | handleEventSequence(EventSequence sequence)Called by the AutomationHandler when an event sequence
is completed via a hotkey. The EventSequence Object will be the
same object that would be returned as if
AutomationHandler.stopEventSequence() had been called.
| public void | handleScreenCapture(byte[] capture)Called by the AutomationHandler when a screen capture
is performed via a hotkey. The byte[] will be the same array that
would be returned as if AutomationHandler.captureScreen()
had been called.
|
|