Just Operator Overview Convert an object or a set of objects into an Observable that emits that or those objects. Examples Single Item observable := rxgo.Just(1)() Output: 1 Multiple Items observable := rxgo.Just(1, 2, 3)() Output: 1 2 3 Channel externalCh := make(chan int) observable := rxgo.Just(externalCh)() Options WithBufferedChannel WithPublishStrategy