Trait/Object

com.krux.hyperion.precondition

Precondition

Related Docs: object Precondition | package precondition

Permalink

trait Precondition extends NamedPipelineObject

The base trait of all preconditions.

A precondition is a condition that must be met before the object can run. The activity cannot run until all its conditions are met.

Source
Precondition.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Precondition
  2. NamedPipelineObject
  3. PipelineObject
  4. Ordered
  5. Comparable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Self <: Precondition

    Permalink

Abstract Value Members

  1. abstract def baseFields: BaseFields

    Permalink
    Definition Classes
    NamedPipelineObject
  2. abstract def preconditionFields: PreconditionFields

    Permalink
  3. abstract def serialize: AdpPrecondition

    Permalink
    Definition Classes
    PreconditionPipelineObject
  4. abstract def updateBaseFields(fields: BaseFields): Self

    Permalink
    Definition Classes
    NamedPipelineObject
  5. abstract def updatePreconditionFields(fields: PreconditionFields): Self

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def <(that: PipelineObject): Boolean

    Permalink
    Definition Classes
    Ordered
  4. def <=(that: PipelineObject): Boolean

    Permalink
    Definition Classes
    Ordered
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def >(that: PipelineObject): Boolean

    Permalink
    Definition Classes
    Ordered
  7. def >=(that: PipelineObject): Boolean

    Permalink
    Definition Classes
    Ordered
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def compare(that: PipelineObject): Int

    Permalink
    Definition Classes
    PipelineObject → Ordered
  11. def compareTo(that: PipelineObject): Int

    Permalink
    Definition Classes
    Ordered → Comparable
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def groupedBy(group: String): Self

    Permalink

    Postfix the name field

    Postfix the name field

    Definition Classes
    NamedPipelineObject
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. def id: PipelineObjectId

    Permalink
    Definition Classes
    NamedPipelineObjectPipelineObject
  19. def idGroupedBy(group: String): Self

    Permalink

    Have a grouping postfix in the id field

    Have a grouping postfix in the id field

    Definition Classes
    NamedPipelineObject
    Note

    Id naming is more restrictive, it is recommended to not changing the id unleass you have a good reason

  20. def idNamed(namePrefix: String): Self

    Permalink

    Id field will be prefixed with name

    Id field will be prefixed with name

    Definition Classes
    NamedPipelineObject
    Note

    Id naming is more restrictive, it is recommended to not changing the id unless you have a good reason

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def maximumRetries: Option[HInt]

    Permalink
  23. def name: Option[String]

    Permalink

    Name of the pipeline object, if not set, it will defaults to

    Name of the pipeline object, if not set, it will defaults to

    Option(id)
    Definition Classes
    NamedPipelineObject
  24. def named(namePrefix: String): Self

    Permalink

    Give the object a name prefix

    Give the object a name prefix

    Definition Classes
    NamedPipelineObject
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def objects: Iterable[PipelineObject]

    Permalink
    Definition Classes
    PreconditionPipelineObject
  29. def onFail(actions: Action*): Self

    Permalink
  30. def onFail: Seq[Action]

    Permalink
  31. def onLateAction(actions: Action*): Self

    Permalink
  32. def onLateAction: Seq[Action]

    Permalink
  33. def onSuccess(actions: Action*): Self

    Permalink
  34. def onSuccess: Seq[Action]

    Permalink
  35. def preconditionTimeout: Option[HDuration]

    Permalink

    The precondition will be retried until the retryTimeout with a gap of retryDelay between attempts.

    The precondition will be retried until the retryTimeout with a gap of retryDelay between attempts. Time period; for example, "1 hour".

  36. def ref: AdpRef[AdpPrecondition]

    Permalink
    Definition Classes
    PreconditionPipelineObject
  37. def role: HString

    Permalink

    The IAM role to use for this precondition.

  38. implicit def seq2Option[A](anySeq: Seq[A]): Option[Seq[A]]

    Permalink
    Definition Classes
    PipelineObject
  39. def seqToOption[A, B](anySeq: Seq[A])(transform: (A) ⇒ B): Option[Seq[B]]

    Permalink
    Definition Classes
    PipelineObject
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. implicit def uniquePipelineId2String(id: PipelineObjectId): String

    Permalink
    Definition Classes
    PipelineObject
  43. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. def withMaximumRetries(retries: HInt): Self

    Permalink
  47. def withPreconditionTimeout(timeout: HDuration): Self

    Permalink
  48. def withRole(role: HString): Self

    Permalink

Inherited from NamedPipelineObject

Inherited from PipelineObject

Inherited from Ordered[PipelineObject]

Inherited from Comparable[PipelineObject]

Inherited from AnyRef

Inherited from Any

Ungrouped