StartWithIterable Operator

February 25, 2020 ยท View on GitHub

Overview

Emit a specified Iterable before beginning to emit the items from the source Observable.

Example

observable := rxgo.Just(3, 4)().StartWith(
	rxgo.Just(1, 2)())

Output:

1
2
3
4

Options

  • WithBufferedChannel

  • WithContext

  • WithObservationStrategy

  • WithErrorStrategy

  • WithPublishStrategy

Contents

  1. 1Overview
  2. 2Example
  3. 3Options