* @param topic Bots expect a unique token to know which request to reply to
* @param params JSON encodable message.
*/
public void postModeratorService(String service, String topic,
Map<String, Object> params) {
ServerChannel channel = this.getServiceRequestChannel(service);
Map<String, Object> message = new HashMap<String, Object>();
message.put("value", params);
message.put("topic", topic);
message.put("service", service);
channel.publish(this.sessionModerator.getLocalSession(), message, null);
}