com.raquo.airstream.custom

Type members

Classlikes

class CustomSignalSource[A](getInitialValue: => Try[A], makeConfig: (() => A, () => A, GetStartIndex, GetIsStarted) => Config) extends WritableSignal[A] with CustomSource[A]

Use this to easily create a custom signal from an external source

Use this to easily create a custom signal from an external source

See docs on custom sources, and CustomSource.Config

Companion:
object
Companion:
class
trait CustomSource[A] extends WritableObservable[A]

Base functionality for a custom observable based on start and stop callbacks.

Base functionality for a custom observable based on start and stop callbacks.

See:

Companion:
object
Companion:
class
class CustomStreamSource[A](makeConfig: (() => A, FireError, GetStartIndex, GetIsStarted) => Config) extends WritableStream[A] with CustomSource[A]

Use this to easily create a custom signal from an external source

Use this to easily create a custom signal from an external source

See docs on custom sources, and CustomSource.Config

Companion:
object
Companion:
class