Interface TableSinkValidator

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TableSinkValidator
Validator for TableSinks to ensure the sink is ready for writing data.
  • Method Summary

    Modifier and Type
    Method
    Description
    Performs checks to ensure the sink is ready for writing data.
  • Method Details

    • validate

      List<Violation> validate(SinkDefinition definition)
      Performs checks to ensure the sink is ready for writing data.
      Parameters:
      definition - The definition of the sink to perform checks against.
      Returns:
      A list of checks performed on the sink that maybe empty if no checks are needed for the Sink.