Source

ox.channels.Source$
See theSource companion trait
object Source extends SourceCompanionOps

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Source.type

Members list

Value members

Inherited methods

def concat[T](sources: Seq[() => Source[T]])(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def fromFork[T](f: Fork[T])(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def fromIterable[T](it: Iterable[T])(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def fromIterator[T](it: => Iterator[T])(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def fromValues[T](ts: T*)(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def iterate[T](zero: T)(f: T => T)(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def repeat[T](element: T)(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def tick[T](interval: FiniteDuration, element: T)(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def timeout[T](interval: FiniteDuration, element: T)(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def unfold[S, T](initial: S)(f: S => Option[(T, S)])(using Ox, StageCapacity): Source[T]

Attributes

Inherited from:
SourceCompanionOps