package event
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
trait
AppChangeEvent[T <: ObjectResource] extends AnyRef
Indicates that something changed in the cloudflow application.
-
sealed
trait
AppEvent extends AnyRef
Indicates that a cloudflow application was deployed or undeployed.
-
case class
ConfigInputChangeEvent(appId: String, namespace: String, watchEvent: WatchEvent[Secret]) extends AppChangeEvent[Secret] with Product with Serializable
Indicates that the configuration of the application has been changed by the user.
- case class DeployEvent(app: CR, currentApp: Option[CR], cause: ObjectResource) extends AppEvent with Product with Serializable
- trait Event extends AnyRef
-
case class
StatusChangeEvent(appId: String, streamletName: String, watchEvent: WatchEvent[Pod]) extends AppChangeEvent[Pod] with Product with Serializable
Indicates that the status of the application has changed.
-
case class
StreamletChangeEvent[T <: ObjectResource](appId: String, streamletName: String, watchEvent: WatchEvent[T]) extends AppChangeEvent[T] with Product with Serializable
Indicates that a streamlet has changed.
- case class UndeployEvent(app: CR, cause: ObjectResource) extends AppEvent with Product with Serializable
Value Members
- object AppEvent
- object ConfigInputChangeEvent extends Event with Serializable
- object Event extends Event
- object StatusChangeEvent extends Event with Serializable
- object StreamletChangeEvent extends Event with Serializable