And in the super call ``` private fun ok(messag...
# codereview
f
And in the super call
Copy code
private fun ok(messageBody: MessageBody, validEvents: List<String>): Observable<Message<MessageBody>> {

        if (logger.isDebugEnabled) {
            logger.debug(“Ok called for node ${node.id}“)
        }
        return FlowOrchestrator.tryToDoNode(validEvents, node, messageBody)
                .toObservable()
                .filter { it != null }
                .flatMap { send(it.eventName, it.messageBody) }
    }