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.
- Alphabetic
- By Inheritance
- ContainerStateTerminated
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val containerID: Option[String]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val exitCode: Int
- val finishedAt: Option[Time]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mapContainerID(f: (String) ⇒ String): ContainerStateTerminated
if containerID has a value, transforms to the result of function
-
def
mapExitCode(f: (Int) ⇒ Int): ContainerStateTerminated
transforms exitCode to result of function
-
def
mapFinishedAt(f: (Time) ⇒ Time): ContainerStateTerminated
if finishedAt has a value, transforms to the result of function
-
def
mapMessage(f: (String) ⇒ String): ContainerStateTerminated
if message has a value, transforms to the result of function
-
def
mapReason(f: (String) ⇒ String): ContainerStateTerminated
if reason has a value, transforms to the result of function
-
def
mapSignal(f: (Int) ⇒ Int): ContainerStateTerminated
if signal has a value, transforms to the result of function
-
def
mapStartedAt(f: (Time) ⇒ Time): ContainerStateTerminated
if startedAt has a value, transforms to the result of function
- val message: Option[String]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val reason: Option[String]
- val signal: Option[Int]
- val startedAt: Option[Time]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withContainerID(value: String): ContainerStateTerminated
Returns a new data with containerID set to new value
-
def
withExitCode(value: Int): ContainerStateTerminated
Returns a new data with exitCode set to new value
-
def
withFinishedAt(value: Time): ContainerStateTerminated
Returns a new data with finishedAt set to new value
-
def
withMessage(value: String): ContainerStateTerminated
Returns a new data with message set to new value
-
def
withReason(value: String): ContainerStateTerminated
Returns a new data with reason set to new value
-
def
withSignal(value: Int): ContainerStateTerminated
Returns a new data with signal set to new value
-
def
withStartedAt(value: Time): ContainerStateTerminated
Returns a new data with startedAt set to new value