protected async getByName(roomName: string, appId: string): Promise<IRoom> {
        this.orch.debugLog(`The App ${appId} is getting the roomByName: "${roomName}"`);

        // #TODO: #AppsEngineTypes - Remove explicit types and typecasts once the apps-engine definition/implementation mismatch is fixed.
        const promise: Promise<IRoom | undefined> = this.orch.getConverters()?.get('rooms').convertByName(roomName);