LifecycleHandler

final case class LifecycleHandler(exec: Option[ExecAction], httpGet: Option[HTTPGetAction], tcpSocket: Option[TCPSocketAction])

LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.

Companion:
object
Source:
LifecycleHandler.scala
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

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

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

Source:
LifecycleHandler.scala

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

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

Source:
LifecycleHandler.scala

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

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

Source:
LifecycleHandler.scala

Returns a new data with exec set to new value

Returns a new data with exec set to new value

Source:
LifecycleHandler.scala

Returns a new data with httpGet set to new value

Returns a new data with httpGet set to new value

Source:
LifecycleHandler.scala

Returns a new data with tcpSocket set to new value

Returns a new data with tcpSocket set to new value

Source:
LifecycleHandler.scala

Inherited methods

Inherited from:
Product