Create OperatorFebruary 25, 2020 ยท View on GitHubOverview Create an Observable from scratch by calling observer methods programmatically. Example observable := rxgo.Create([]rxgo.Producer{func(ctx context.Context, next chan<- rxgo.Item) { next <- rxgo.Of(1) next <- rxgo.Of(2) next <- rxgo.Of(3) }}) Output: 1 2 3 Options WithBufferedChannel WithContext WithObservationStrategy WithErrorStrategy WithPublishStrategy