Flux

morphir.knowledge.logic.core.Flux
See theFlux companion object
final case class Flux[+A](stream: ZStream[Any, Nothing, Option[A]])

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
Flux[A]

Members list

Value members

Concrete methods

def <>[B >: A](that: Flux[B]): Flux[B]

Operator alias for merge.

Operator alias for merge.

Attributes

def flatMap[B](f: A => Flux[B]): Flux[B]
def merge[B >: A](that: Flux[B]): Flux[B]
def runCollect: ZIO[Any, Nothing, Chunk[A]]
def runCollectN(n: Int): ZIO[Any, Nothing, Chunk[A]]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product