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

Concise view

Value members

Inherited methods

def concat[T](capacity: Int)(sources: Seq[() => Source[T]])(using Ox): Source[T]

Attributes

Inherited from:
SourceCompanionOps
def concat[T](sources: Seq[() => Source[T]])(using Ox): Source[T]

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
SourceCompanionOps
def repeat[T](capacity: Int)(element: T)(using Ox): Source[T]

Attributes

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

Attributes

Inherited from:
SourceCompanionOps
def repeat(using Ox): Source[Unit]

Attributes

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

Attributes

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

Attributes

Inherited from:
SourceCompanionOps
def tick(interval: FiniteDuration)(using Ox): Source[Unit]

Attributes

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

Attributes

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

Attributes

Inherited from:
SourceCompanionOps
def timeout(interval: FiniteDuration)(using Ox): Source[Unit]

Attributes

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

Attributes

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

Attributes

Inherited from:
SourceCompanionOps