(ownerWorkspaceId: string)
| 217 | } |
| 218 | |
| 219 | private getOwnerHandleDir(ownerWorkspaceId: string): string { |
| 220 | assert(ownerWorkspaceId.trim().length > 0, "ownerWorkspaceId must be non-empty"); |
| 221 | return path.join(this.config.getSessionDir(ownerWorkspaceId), TASK_HANDLES_DIR); |
| 222 | } |
| 223 | |
| 224 | private getHandlePath(ownerWorkspaceId: string, handleId: string): string { |
| 225 | assert(handleId.trim().length > 0, "handleId must be non-empty"); |
no test coverage detected