* Peek at cached file paths from pending compaction. * Returns paths that will be reinjected, or null if no pending compaction.
()
| 5992 | * Returns paths that will be reinjected, or null if no pending compaction. |
| 5993 | */ |
| 5994 | getPendingTrackedFilePaths(): string[] | null { |
| 5995 | return this.compactionHandler.peekCachedFilePaths(); |
| 5996 | } |
| 5997 | |
| 5998 | private assertNotDisposed(operation: string): void { |
| 5999 | assert(!this.disposed, `AgentSession.${operation} called after dispose`); |
no test coverage detected