Lifecycle Handler
data class LifecycleHandler(val exec: ExecAction? = null, val httpGet: HTTPGetAction? = null, val tcpSocket: TCPSocketAction? = null)
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.
Constructors
Link copied to clipboard
fun LifecycleHandler(exec: ExecAction? = null, httpGet: HTTPGetAction? = null, tcpSocket: TCPSocketAction? = null)