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

com.ing.baker.recipe.common.CheckPointEvent.scala Maven / Gradle / Ivy

The newest version!
package com.ing.baker.recipe.common

trait CheckPointEvent {

  /**
   * name of the checkpoint event
   */
  val name: String

  /**
   * A set of names of the events AND preconditions (events)
   */
  val requiredEvents: Set[String]

  /**
   * A set of names of the events OR preconditions (events)
   */
  val requiredOneOfEvents: Set[Set[String]]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy