com.raquo.airstream.status

Members list

Type members

Classlikes

Tracks the status of input and output of operator(stream). See Status.

Tracks the status of input and output of operator(stream). See Status.

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Supertypes
class Object
trait Matchable
class Any
Self type
case class Pending[+In](input: In) extends Status[In, Nothing]

Waiting for output for the latest input event.

Waiting for output for the latest input event.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Status[In, Nothing]
class Object
trait Matchable
class Any
Show all
case class Resolved[+In, +Out](input: In, output: Out, ix: Int) extends Status[In, Out]

Output event received for this input, for the ix-th time.

Output event received for this input, for the ix-th time.

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Status[In, Out]
class Object
trait Matchable
class Any
Show all
sealed trait Status[+In, +Out]

Represents a combination of input event with the status (availability) of output event(s) derived from it. The output events typically come from a stream that is derived from the input stream, but emitting asynchronously, for example inputStream.delay(1000).

Represents a combination of input event with the status (availability) of output event(s) derived from it. The output events typically come from a stream that is derived from the input stream, but emitting asynchronously, for example inputStream.delay(1000).

Attributes

Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Pending[In]
class Resolved[In, Out]