Interface IPromptConfigProcessor<Config>

Type Parameters:
Config - The type of the config to post-process.

public interface IPromptConfigProcessor<Config>
Internal interface used by PromptConfigJsonMarshaller to pass the logic for post-processing prompt configs after they have been deserialized from JSON. The config can be either a connection config or a query config.
Since:
8.5.0
  • Method Summary

    Modifier and Type
    Method
    Description
    Post-processes the given config after it has been deserialized from JSON.
  • Method Details

    • postProcess

      Config postProcess(Config config)
      Post-processes the given config after it has been deserialized from JSON.
      Parameters:
      config - The config to post-process.
      Returns:
      The post-processed config.