pip-services3-components-nodex
Version: 
Component definitions for Pip.Services in Node.js / ES2017
21 lines (20 loc) • 567 B
TypeScript
/** @module cache */
import { Descriptor } from 'pip-services3-commons-nodex';
import { Factory } from '../build/Factory';
/**
 * Creates [[ICache]] components by their descriptors.
 *
 * @see [[Factory]]
 * @see [[ICache]]
 * @see [[MemoryCache]]
 * @see [[NullCache]]
 */
export declare class DefaultCacheFactory extends Factory {
    static readonly Descriptor: Descriptor;
    static readonly NullCacheDescriptor: Descriptor;
    static readonly MemoryCacheDescriptor: Descriptor;
    /**
     * Create a new instance of the factory.
     */
    constructor();
}