I - Input typeO - Output typepublic interface Continuous<I,O>
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Continuous.Notifier<O> |
| Modifier and Type | Method and Description |
|---|---|
void |
act(I input,
Continuous.Notifier<O> notifier)
Entry point for the logic/action/mechanism this operation
represents.
|
void |
cancel(I input)
Cancel/stop/clean-up any activities/resources started and or
allocated when
act(Object, Notifier) method was invoked,
or while it was executing |
void act(I input, Continuous.Notifier<O> notifier)
input - Operation inputnotifier - Callback interfacevoid cancel(I input)
act(Object, Notifier) method was invoked,
or while it was executinginput - Operation input. As a rule this should be equal the input
parameter passed to the act(Object, Notifier) method