Packages

package event

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait AppChangeEvent[T <: ObjectResource] extends AnyRef

    Indicates that something changed in the cloudflow application.

  2. sealed trait AppEvent extends AnyRef

    Indicates that a cloudflow application was deployed or undeployed.

  3. 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.

  4. case class DeployEvent(app: CR, currentApp: Option[CR], cause: ObjectResource) extends AppEvent with Product with Serializable
  5. trait Event extends AnyRef
  6. 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.

  7. 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.

  8. case class UndeployEvent(app: CR, cause: ObjectResource) extends AppEvent with Product with Serializable

Value Members

  1. object AppEvent
  2. object ConfigInputChangeEvent extends Event with Serializable
  3. object Event extends Event
  4. object StatusChangeEvent extends Event with Serializable
  5. object StreamletChangeEvent extends Event with Serializable

Ungrouped