notifier.sendingResult(context, myInvocation, "sending result back to the invoker of this workflow");
try {
result = new Success();
notifier.sendingResponseSucceeded(context, myInvocation, "sent result to invoker");
} catch (Exception ex) {
notifier.sendingResponseFailed(context, myInvocation, ex);
}
return result;
}