Interface ValidationProgress

All Known Implementing Classes:
ProgressAdapter, ValidationProgressAdapter

public interface ValidationProgress
Receives progress messages from within the validation task. This may be invoked from multiple threads. Therefore progress impls should be thread-safe and perform quickly, since they block the validation task.
  • Field Details Link icon

  • Method Details Link icon

    • onStart Link icon

      void onStart()
      Called right after the validation task has been started.
    • onEnd Link icon

      void onEnd(SchemaModelValidator.Result result)
      Called after all validations have been performed with the final result.
    • enteringChecks Link icon

      void enteringChecks(int entityModels, int relationModels)
      After starting, database meta data is collected and then a simple count of models to validate is calculated.
    • enteringEntityCheck Link icon

      void enteringEntityCheck(int num, EntityModel model)
      Called before an entity model is validated.
    • leavingEntityCheck Link icon

      void leavingEntityCheck(int num, EntityModel model)
      Called after an entity model has been validated.
    • enteringRelationModel Link icon

      void enteringRelationModel(int num, RelationModel relationModel)
      Called before a relation model is validated.
    • leavingRelationModel Link icon

      void leavingRelationModel(int num, RelationModel relationModel)
      Called after the relation model is validated.