gluon
    Preparing search index...

    Class GluonCacheRule<T>

    Type Parameters

    • T

    Implements

    • GluonCacheRule<T>
    Index

    Constructors

    Properties

    handlerFunction?: GluonCacheRuleHandlerFunction<T>
    name?: string
    retrieveFunction?: GluonCacheRuleRetrieveFunction<T>
    structureType?: StaticManagerType<T>

    Methods

    • Set the function which handles the rule. The function is passed the structure data that this rule is for.

      Parameters

      • handlerFunction: GluonCacheRuleHandlerFunction<T>

        A function that handles the rule.

      Returns GluonCacheRule<T>

    • Set the function which retrieves the data for the structure.

      Parameters

      • retrieveFunction: GluonCacheRuleRetrieveFunction<T>

        The function that retrieves the data for the structure.

      Returns GluonCacheRule<T>

    • Set the type of structure this rule is for. Pass the class of the structure type.

      Parameters

      • structureType: StaticManagerType<T>

        The type of structure this rule is for.

      Returns GluonCacheRule<T>