context.reportNotification(processId, channelName, payload);
}
private void receiveParameterStatus(ByteBuf buffer) throws IOException {
BasicContext context = getContext();
String name = readCString(buffer, context.getCharset());
String value = readCString(buffer, context.getCharset());
context.updateSystemParameter(name, value);
}