constructor(options: ServerOptions, inputType?: new () => In) {
        super(options);
        this._remoteNode = new RESTServerNode<In, In>(options, inputType);
        this.once('build', this._onRemoteBuild.bind(this));
    }