Used by the ValueHostFactory to recognize a specific ValueHost class from the ValueHostConfig and create it, plus create its state.

interface IValueHostGenerator {
    canCreate(config): boolean;
    create(valueHostsManager, config, state): IValueHost;
    cleanupInstanceState(state, config): void;
    createInstanceState(config): ValueHostInstanceState;
}

Implemented by

Methods

Generated using TypeDoc v0.25.12