Action interface representing actions to be excuted on processes
| 10 | |
| 11 | // Action interface representing actions to be excuted on processes |
| 12 | type Action interface { |
| 13 | Execute(operationID string, mtaClient mtaclient.MtaClientOperations) ExecutionStatus |
| 14 | } |
| 15 | |
| 16 | // GetActionToExecute returns the action to execute specified with action ID |
| 17 | func GetActionToExecute(actionID, commandName string, monitoringRetries uint) Action { |
no outgoing calls
no test coverage detected