• Convert an iterable to a synchronous event source

    Each time the resulting source is subscribed to, it will emit an event for each item in the iterator, then close the connection. Pause/resume is supported.

    Type Parameters

    • T

    Parameters

    • iterable: Iterable<T>

    Returns Source<T>