public interface CommandOriginator
| Modifier and Type | Method and Description |
|---|---|
default void |
processAck(CommandAck ack)
Callback method with the CommandAck returned by the CommandRequest
destination agent; it signifies that the CommandRequest
has been received and accepted by the command destination.
|
default void |
processNack(CommandNack nack)
Callback method with the CommandNack returned by the CommandRequest
destination agent; it signifies that the CommandRequest
has been received but declined by the command destination.
|
default void |
processResult(CommandResult result)
Callback method with the CommandResult returned by the CommandRequest
destination agent; it contains the result of the command's execution.
|
default void processAck(CommandAck ack)
ack - The CommandAck acknowledging that the command was accepted.default void processResult(CommandResult result)
result - The CommandResult containing the execution's result.default void processNack(CommandNack nack)
nack - The CommandNack acknowledging that the command was received
but rejected by the command's destination.Copyright © 2023 LSST. All rights reserved.