protected _callOnRemote(proxyId: string, path: string, args: any[]): TPromise<any> {
		return this._remoteCom.callOnRemote(proxyId, path, args);
	}
	constructor(remoteCom: IRemoteCom) {
		super(false);
		this._remoteCom = remoteCom;
		this._remoteCom.setManyHandler(this);
	}