}
public FunctionHandlerServer(int port, boolean debug) {
super(port);
this.handler = new CompositeFunctionHandler();
this.debug = new DebugFunctionHandler(handler);
this.rfh = new ReflectFunctionHandler();
this.dfh = new DelegateFunctionHandler();
this.info = new FunctionInformationHandler();
setDebug(debug);
handler.add(rfh);