Class CompileConfig.Builder

java.lang.Object
org.bsc.langgraph4j.CompileConfig.Builder
Enclosing class:
CompileConfig

public static class CompileConfig.Builder extends Object
This class is a builder for CompileConfig. It allows for the configuration of various options to customize the compilation process.
  • Constructor Details

    • Builder

      protected Builder(CompileConfig config)
      Constructs a new instance of Builder with the specified compile configuration.
      Parameters:
      config - The compile configuration to be used. This value must not be null.
  • Method Details

    • checkpointSaver

      public CompileConfig.Builder checkpointSaver(BaseCheckpointSaver checkpointSaver)
      Sets the checkpoint saver for the configuration.
      Parameters:
      checkpointSaver - The BaseCheckpointSaver to set.
      Returns:
      The current Builder instance for method chaining.
    • interruptBefore

      public CompileConfig.Builder interruptBefore(String... interruptBefore)
      Sets the actions to be performed before an interruption.
      Parameters:
      interruptBefore - the actions to be performed before an interruption
      Returns:
      a reference to the current instance of Builder
    • interruptAfter

      public CompileConfig.Builder interruptAfter(String... interruptAfter)
      Sets the strings that cause an interrupt in the configuration.
      Parameters:
      interruptAfter - An array of string values representing the interruptions.
      Returns:
      The current Builder instance, allowing method chaining.
    • interruptsBefore

      public CompileConfig.Builder interruptsBefore(Collection<String> interruptsBefore)
      Sets the collection of interrupts to be executed before the configuration.
      Parameters:
      interruptsBefore - The collection of interrupt strings.
      Returns:
      This builder instance for method chaining.
    • interruptsAfter

      public CompileConfig.Builder interruptsAfter(Collection<String> interruptsAfter)
      Sets the collection of strings that specify which interrupts should occur after.
      Parameters:
      interruptsAfter - Collection of interrupt identifiers
      Returns:
      The current Builder instance for method chaining
    • build

      public CompileConfig build()
      Initializes the compilation configuration and returns it.
      Returns:
      the compiled CompileConfig object