IObservable.Subscribe() before Stream.Start?

I think that I’m getting problems when doing thing in this order (which seems the logical order to me). Is this as-designed, or is there something else I might be missing?

1 Like

The first subscriber automatically starts the acquisition. It is stopped when the last one unsubscribes. Thus when using this interface you don’t use start and stop anymore.

3 Likes