interface ContainerCache { getEntry(imageId,
operationCacheKey): Promise<undefined | string>; setEntry(imageId,
operationCacheKey,
resultImageId): Promise<void>; } Methods
getEntry
- getEntry(imageId, operationCacheKey): Promise<undefined | string>
Parameters
- imageId: string
- operationCacheKey: string
Returns Promise<undefined | string>
setEntry
- setEntry(imageId, operationCacheKey, resultImageId): Promise<void>
Parameters
- imageId: string
- operationCacheKey: string
- resultImageId: string
Returns Promise<void>