All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kreuzberg.UpdateResult.scala Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package kreuzberg

/** Result of an update operation of a component. */
sealed trait UpdateResult

object UpdateResult {

  /** Just (re)build the component (default) */
  case class Build(assembly: Assembly) extends UpdateResult

  /** Prepend the inner HTML with some code. */
  case class Prepend(assembly: Assembly) extends UpdateResult

  /** Append the inner HTML with some code. */
  case class Append(assembly: Assembly) extends UpdateResult
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy