(
qualifiedName QualifiedName,
parameters interface{},
blocking bool,
result bool)
| 196 | } |
| 197 | |
| 198 | func invokeAction( |
| 199 | qualifiedName QualifiedName, |
| 200 | parameters interface{}, |
| 201 | blocking bool, |
| 202 | result bool) (map[string]interface{}, error) { |
| 203 | // TODO remove all global modifiers |
| 204 | Client.Namespace = qualifiedName.GetNamespace() |
| 205 | res, _, err := Client.Actions.Invoke( |
| 206 | qualifiedName.GetEntityName(), |
| 207 | parameters, |
| 208 | blocking, |
| 209 | result) |
| 210 | return res, err |
| 211 | } |
| 212 | |
| 213 | func printInvocationResponse( |
| 214 | qualifiedName QualifiedName, |
no test coverage detected