trait FluxLike[T] extends AnyRef
Defines the available operations for FluxLike instances.
- Self Type
- Flux[T]
- Alphabetic
- By Inheritance
- FluxLike
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
flatten[S](implicit ev: <:<[T, Flux[S]]): Flux[S]
Bind dynamic sequences given this input sequence like Flux.flatMap, but preserve ordering and concatenate emissions instead of merging (no interleave).
Bind dynamic sequences given this input sequence like Flux.flatMap, but preserve ordering and concatenate emissions instead of merging (no interleave). Errors will immediately short circuit current concat backlog.
Alias for concatMap.
- returns
a concatenated Flux
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
onErrorRecover[U <: T](pf: PartialFunction[Throwable, U]): Flux[T]
Returns a Flux that mirrors the behavior of the source, unless the source is terminated with an
onError, in which case the streaming of events fallbacks to a Flux emitting a single element generated by the backup function.Returns a Flux that mirrors the behavior of the source, unless the source is terminated with an
onError, in which case the streaming of events fallbacks to a Flux emitting a single element generated by the backup function.The created Flux mirrors the behavior of the source in case the source does not end with an error or if the thrown Throwable is not matched.
See onErrorResume for the version that takes a total function as a parameter.
- pf
- a function that matches errors with a backup element that is emitted when the source throws an error.
-
final
def
onErrorRecoverWith[U <: T](pf: PartialFunction[Throwable, Flux[U]]): Flux[T]
Returns a Flux that mirrors the behavior of the source, unless the source is terminated with an
onError, in which case the streaming of events continues with the specified backup sequence generated by the given function.Returns a Flux that mirrors the behavior of the source, unless the source is terminated with an
onError, in which case the streaming of events continues with the specified backup sequence generated by the given function.The created Flux mirrors the behavior of the source in case the source does not end with an error or if the thrown Throwable is not matched.
See onErrorResume for the version that takes a total function as a parameter.
- pf
is a function that matches errors with a backup throwable that is subscribed when the source throws an error.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )