ixfx
    Preparing search index...

    Namespace From

    Functions

    array

    Reads the contents of array into a Reactive, with optional time interval between values. A copy of the array is used, so changes will not affect the reactive.

    arrayObject

    Wraps an array object.

    arrayProxy
    boolean
    count

    Produces an incrementing value. By default starts at 0 and counts forever, incrementing every second.

    derived
    event

    Subscribes to an event, emitting data

    eventField

    Fired when eventName fires on target.

    eventTrigger

    Emits a value whenever event happens. Data emitted is { sinceLast, total }, where 'sinceLast' is milliseconds since last event and 'total' is total number of times event has been fired.

    func

    Produces a reactive from the basis of a function. callback is executed, with its result emitted via the returned reactive.

    iterator

    Creates a readable reactive based on a (async)generator or iterator

    merged

    Returns a stream that merges the output of a list of homogenous streams. Use mergedWithOptions to specify additional options.

    mergedWithOptions

    Returns a stream that merges the output of a list of homogenous streams.

    number
    object

    Creates a Reactive wrapper with the shape of the input object.

    objectProxy

    Creates a proxy of target object (or array), so that regular property setting will be intercepted and output on a Reactive object as well.

    objectProxySymbol

    Same as objectProxy, but the return value is the proxied object along with the Reactive wrapped as symbol property.

    observable

    Creates a RxJs style observable

    const o = observable(stream => {
    // Code to run for initialisation when we go from idle to at least one subscriber
    // Won't run again for additional subscribers, but WILL run again if we lose
    observableWritable

    As observable, but returns a Reactive that allows writing

    of
    string

    Type Aliases

    ArrayObjectOptions

    Options when creating a reactive object.

    ArrayOptions
    CountOptions

    Options for the 'count' source.

    DerivedFunction
    DerivedOptions
    EventPluckedFieldOptions
    EventPluckedFieldOptions2
    EventSourceOptions
    EventSourceTriggerOptions
    FunctionFunction

    Function which returns a result. Or promised result.

    FunctionOptions
    GeneratorOptions
    ObjectOptions

    Options when creating a reactive object.

    PingedFunctionFunction

    Function which returns a result. Or promised result. Takes a value as first parameter, and callback to signal an abort as the second.

    PingedFunctionOptions
    ReactiveProxied
    TimeoutPingOptions
    TimeoutValueOptions
    Trigger

    A trigger can be a value, a function or generator. Value triggers never complete.

    TriggerData
    TriggerFunction

    Trigger that calls a fn. If fn returns undefined, it means the trigger is complete

    TriggerGenerator
    TriggerValue
    ValueToPingOptions