Interface ContainerCache

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

Implemented by

Methods

  • Parameters

    • imageId: string
    • operationCacheKey: string

    Returns Promise<undefined | string>

  • Parameters

    • imageId: string
    • operationCacheKey: string
    • resultImageId: string

    Returns Promise<void>

Generated using TypeDoc