Base interface for a ValueHostsManagerConfigBuilder and Modifier. The ManagerConfigBuilder provides a way to configure ValueHostManagerConfig and ValidationManagerConfig through meaningful code.

interface IManagerConfigBuilder<T> {
    dispose(): void;
    complete(): T;
    static(valueHostName, dataType?, parameters?): ManagerConfigBuilderBase<T>;
    static(valueHostName, parameters): ManagerConfigBuilderBase<T>;
    static(config): ManagerConfigBuilderBase<T>;
    static(arg1, arg2?, parameters?): ManagerConfigBuilderBase<T>;
    calc(valueHostName, dataType, calcFn): ManagerConfigBuilderBase<T>;
    calc(config): ManagerConfigBuilderBase<T>;
    calc(arg1, dataType?, calcFn?): ManagerConfigBuilderBase<T>;
}

Type Parameters

Hierarchy (view full)

Implemented by

Methods

  • If the user needs to abandon this instance, they should use this to clean up active resources (like timers) and to release memory that would stall the garbage collector from disposing this object. It should assign any object reference to undefined as a strong indicator that the object has been disposed.

    Returns void

Generated using TypeDoc v0.25.12