Implement startLink and finishLink for jsonrpc daemon

This commit is contained in:
AsamK 2021-11-11 18:27:16 +01:00
parent 79cc225869
commit b7005884fd
9 changed files with 242 additions and 1 deletions

View file

@ -122,7 +122,6 @@ public class SignalJsonRpcDispatcherHandler {
final ObjectMapper objectMapper, final String method, ContainerNode<?> params
) throws JsonRpcException {
var command = getCommand(method);
// TODO implement link
if (c != null) {
if (command instanceof JsonRpcMultiCommand<?> jsonRpcCommand) {
return runCommand(objectMapper, params, new MultiCommandRunnerImpl<>(c, jsonRpcCommand));