sealed trait Flash[+A] extends AnyRef
Flash represents a flash value that one can retrieve from the flash scope.
The flash scope consists of a serialized and url-encoded json object built
with zio-schema.
- Self Type
- Flash[A]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Flash
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
<*>[B](that: ⇒ Flash[B]): Flash[(A, B)]
Operator alias for
zip. -
final
def
<>[B >: A](that: ⇒ Flash[B]): Flash[B]
Operator alias for
orElse. -
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def flatMap[B](f: (A) ⇒ Flash[B]): Flash[B]
- final def foldHtml[A1 >: A, B](f: (Html) ⇒ B, g: (Html) ⇒ B)(h: (B, B) ⇒ B)(implicit ev: =:=[A1, Message[Html, Html]]): Flash[B]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def map[B](f: (A) ⇒ B): Flash[B]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def optional: Flash[Option[A]]
- final def orElse[B >: A](that: ⇒ Flash[B]): Flash[B]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- final def toHtml[A1 >: A](implicit ev: =:=[A1, String]): Flash[Html]
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- final def zip[B](that: ⇒ Flash[B]): Flash[(A, B)]
- final def zipWith[B, C](that: ⇒ Flash[B])(f: (A, B) ⇒ C): Flash[C]