All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.timgent.sparkdataquality.checkssuite.ChecksSuiteBase.scala Maven / Gradle / Ivy

package com.github.timgent.sparkdataquality.checkssuite

import java.time.Instant

import com.github.timgent.sparkdataquality.checks.{CheckResult, CheckStatus}
import enumeratum._

import scala.concurrent.{ExecutionContext, Future}

/**
  * Defines a suite of checks to be done
  */
trait ChecksSuiteBase {

  /**
    * Run all checks in the ChecksSuite
    * @param timestamp - time the checks are being run
    * @param ec - execution context
    * @return
    */
  def run(timestamp: Instant)(implicit ec: ExecutionContext): Future[ChecksSuiteResult]

  /**
    * Description of the check suite
    * @return
    */
  def checkSuiteDescription: String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy