(workspaceId: string)
| 7804 | } |
| 7805 | |
| 7806 | isBusyForMessage(workspaceId: string): boolean { |
| 7807 | return this.sessions.get(workspaceId.trim())?.isBusy() === true; |
| 7808 | } |
| 7809 | |
| 7810 | hasQueuedWorkspaceTurn(workspaceId: string, handleId: string): boolean { |
| 7811 | return this.sessions.get(workspaceId.trim())?.hasQueuedWorkspaceTurn(handleId) ?? false; |
no test coverage detected