// this is actually sync.. so we could add a completion listener
// and return the boolean result if we wanted/needed
BrowserMessageDispatcher dispatcher = context.getDispatcher();
if (dispatcher != null) {
dispatcher.dispatch(new BrowserMessage(lId, opId, decodedMap));
} else {
context.debug("No dispatcher for StimulusRPC" + opId);
}
return true;