Packages

final case class ContainerStateTerminated(exitCode: Int, reason: Option[String] = None, startedAt: Option[Time] = None, message: Option[String] = None, finishedAt: Option[Time] = None, containerID: Option[String] = None, signal: Option[Int] = None) extends Product with Serializable

ContainerStateTerminated is a terminated state of a container.

Source
ContainerStateTerminated.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContainerStateTerminated
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ContainerStateTerminated(exitCode: Int, reason: Option[String] = None, startedAt: Option[Time] = None, message: Option[String] = None, finishedAt: Option[Time] = None, containerID: Option[String] = None, signal: Option[Int] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. val containerID: Option[String]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. val exitCode: Int
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. val finishedAt: Option[Time]
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def mapContainerID(f: (String) => String): ContainerStateTerminated

    if containerID has a value, transforms to the result of function

  14. def mapExitCode(f: (Int) => Int): ContainerStateTerminated

    transforms exitCode to result of function

  15. def mapFinishedAt(f: (Time) => Time): ContainerStateTerminated

    if finishedAt has a value, transforms to the result of function

  16. def mapMessage(f: (String) => String): ContainerStateTerminated

    if message has a value, transforms to the result of function

  17. def mapReason(f: (String) => String): ContainerStateTerminated

    if reason has a value, transforms to the result of function

  18. def mapSignal(f: (Int) => Int): ContainerStateTerminated

    if signal has a value, transforms to the result of function

  19. def mapStartedAt(f: (Time) => Time): ContainerStateTerminated

    if startedAt has a value, transforms to the result of function

  20. val message: Option[String]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def productElementNames: Iterator[String]
    Definition Classes
    Product
  25. val reason: Option[String]
  26. val signal: Option[Int]
  27. val startedAt: Option[Time]
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. def withContainerID(value: String): ContainerStateTerminated

    Returns a new data with containerID set to new value

  33. def withExitCode(value: Int): ContainerStateTerminated

    Returns a new data with exitCode set to new value

  34. def withFinishedAt(value: Time): ContainerStateTerminated

    Returns a new data with finishedAt set to new value

  35. def withMessage(value: String): ContainerStateTerminated

    Returns a new data with message set to new value

  36. def withReason(value: String): ContainerStateTerminated

    Returns a new data with reason set to new value

  37. def withSignal(value: Int): ContainerStateTerminated

    Returns a new data with signal set to new value

  38. def withStartedAt(value: Time): ContainerStateTerminated

    Returns a new data with startedAt set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped