com.krux.hyperion.activity

PipelineActivity

trait PipelineActivity[A <: ResourceObject] extends NamedPipelineObject

The activity trait. All activities should mixin this trait.

Source
PipelineActivity.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PipelineActivity
  2. NamedPipelineObject
  3. PipelineObject
  4. Ordered
  5. Comparable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Self <: PipelineActivity[A]

Abstract Value Members

  1. abstract def activityFields: ActivityFields[A]

  2. abstract def baseFields: BaseFields

    Definition Classes
    NamedPipelineObject
  3. abstract def serialize: AdpActivity

    Definition Classes
    PipelineActivityPipelineObject
  4. abstract def updateActivityFields(fields: ActivityFields[A]): Self

  5. abstract def updateBaseFields(fields: BaseFields): Self

    Definition Classes
    NamedPipelineObject

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

    Definition Classes
    Ordered
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. def >(that: PipelineObject): Boolean

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

    Definition Classes
    Ordered
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def attemptTimeout: Option[HDuration]

  12. def clone(): AnyRef

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

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

    Definition Classes
    Ordered → Comparable
  15. def dependsOn: Seq[PipelineActivity[_]]

  16. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  18. def failureAndRerunMode: Option[FailureAndRerunMode]

  19. def finalize(): Unit

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

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

    Postfix the name field

    Postfix the name field

    Definition Classes
    NamedPipelineObject
  22. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  23. def id: PipelineObjectId

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

    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

  25. def idNamed(namePrefix: String): Self

    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

  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. def lateAfterTimeout: Option[HDuration]

  28. def maxActiveInstances: Option[HInt]

  29. def maximumRetries: Option[HInt]

  30. def name: Option[String]

    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
  31. def named(namePrefix: String): Self

    Give the object a name prefix

    Give the object a name prefix

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

    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  35. def objects: Iterable[PipelineObject]

    Definition Classes
    PipelineActivityPipelineObject
  36. def onFail(alarms: SnsAlarm*): Self

  37. def onFailAlarms: Seq[SnsAlarm]

  38. def onLateAction(alarms: SnsAlarm*): Self

  39. def onLateActionAlarms: Seq[SnsAlarm]

  40. def onSuccess(alarms: SnsAlarm*): Self

  41. def onSuccessAlarms: Seq[SnsAlarm]

  42. def preconditions: Seq[Precondition]

  43. def ref: AdpRef[AdpActivity]

    Definition Classes
    PipelineActivityPipelineObject
  44. def retryDelay: Option[HDuration]

  45. def runsOn: Resource[A]

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

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

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

    Definition Classes
    AnyRef
  49. def toString(): String

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

    Definition Classes
    PipelineObject
  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def whenMet(conditions: Precondition*): Self

  55. def withAttemptTimeout(duration: HDuration): Self

  56. def withFailureAndRerunMode(mode: FailureAndRerunMode): Self

  57. def withLateAfterTimeout(duration: HDuration): Self

  58. def withMaxActiveInstances(activeInstances: HInt): Self

  59. def withMaximumRetries(retries: HInt): Self

  60. def withRetryDelay(duration: HDuration): Self

Inherited from NamedPipelineObject

Inherited from PipelineObject

Inherited from Ordered[PipelineObject]

Inherited from Comparable[PipelineObject]

Inherited from AnyRef

Inherited from Any

Ungrouped