(handleId: string)
| 118 | } |
| 119 | |
| 120 | hasWorkspaceTurn(handleId: string): boolean { |
| 121 | return ( |
| 122 | handleId.length > 0 && |
| 123 | isWorkspaceTurnMetadata(this.firstMuxMetadata) && |
| 124 | this.firstMuxMetadata.taskHandleId === handleId |
| 125 | ); |
| 126 | } |
| 127 | |
| 128 | getQueueDispatchMode(): QueueDispatchMode { |
| 129 | return this.queueDispatchMode; |
no test coverage detected