Search Provider - implement clearCache

This commit is contained in:
Rob Lourens
2018-07-03 20:08:53 -07:00
parent 3a0ae3683b
commit 0215f30d9b
7 changed files with 83 additions and 21 deletions

View File

@@ -682,6 +682,7 @@ export interface ExtHostFileSystemShape {
export interface ExtHostSearchShape {
$provideFileSearchResults(handle: number, session: number, query: IRawSearchQuery): TPromise<ISearchCompleteStats>;
$clearCache(handle: number, cacheKey: string): TPromise<void>;
$provideTextSearchResults(handle: number, session: number, pattern: IPatternInfo, query: IRawSearchQuery): TPromise<ISearchCompleteStats>;
}