public interface ProgrammingService
extends org.opendaylight.yangtools.yang.binding.RpcService
rpc clean-instructions {
"Attempt to clean out a certain set of instructions.
Instructions flushed this way need to be in a terminal
state, e.g. Successful, Failed or Cancelled. Instructions
which were not cleaned are reported in the output of
this RPC.";
input {
leaf-list id {
type instruction-id;
}
}
output {
leaf-list unflushed {
type instruction-id;
}
}
}
rpc cancel-instruction {
input {
leaf id {
type instruction-id;
}
}
output {
leaf failure {
type identityref;
}
}
}
| Modifier and Type | Method and Description |
|---|---|
Future<org.opendaylight.yangtools.yang.common.RpcResult<CancelInstructionOutput>> |
cancelInstruction(CancelInstructionInput input) |
Future<org.opendaylight.yangtools.yang.common.RpcResult<CleanInstructionsOutput>> |
cleanInstructions(CleanInstructionsInput input)
Attempt to clean out a certain set of instructions.
|
Future<org.opendaylight.yangtools.yang.common.RpcResult<CleanInstructionsOutput>> cleanInstructions(CleanInstructionsInput input)
Future<org.opendaylight.yangtools.yang.common.RpcResult<CancelInstructionOutput>> cancelInstruction(CancelInstructionInput input)
Copyright © 2017 OpenDaylight. All rights reserved.