Recently I stumbled upon an interesting statement by Enigmativity about the Publish and RefCount operators:
You're using the dangerous .Publish().RefCount() operator pair which creates a sequence that can't be subscribed to after it completes.
This statement seems to oppose Lee Campbell's assessment about these operators. Quoting from his book Intro to Rx:
The Publish/RefCount pair is extremely useful for taking a cold observable and sharing it as a hot observable sequence for subsequent observers.
Initially I didn't believe that Enigmativity's statement was correct, so I tried to refute it. My experiments revealed that the Publish().RefCount() can be
indeed inconsistent. Subscribing a second time to a published sequence can cause a new subscription to the source sequence, or not, depending on whether the source sequence was completed while connected. If it was completed, then it won't be resubscribed. If it was not completed, then it will be resubscribed. Here is a demonstration of this behavior:
var observable = Observable
.Create<int>(o =>
{
o.OnNext(13);
o.OnCompleted(); // Commenting this line alters the observed behavior
return Disposable.Empty;
})
.Do(x => Console.WriteLine($"Producer generated: {x}"))
.Finally(() => Console.WriteLine($"Producer finished"))
.Publish()
.RefCount()
.Do(x => Console.WriteLine($"Consumer received #{x}"))
.Finally(() => Console.WriteLine($"Consumer finished"));
observable.Subscribe().Dispose();
observable.Subscribe().Dispose();
In this example the observable is composed by three parts. First is the producing part that generates a single value and then completes. Then follows the publishing mechanism (Publish+RefCount). And finally comes the consuming part that observes the values emitted by the producer. The observable is subscribed twice. The expected behavior would be that each subscription will receive one value. But this is not what happens! Here is the output:
Producer generated: 13
Consumer received #13
Producer finished
Consumer finished
Consumer finished
And here is the output if we comment the o.OnCompleted(); line. This subtle change results to a behavior that is expected and desirable:
Producer generated: 13
Consumer received #13
Producer finished
Consumer finished
Producer generated: 13
Consumer received #13
Producer finished
Consumer finished
In the first case the cold producer (the part before the Publish().RefCount()) was subscribed only once. The first consumer received the emitted value, but the second consumer received nothing (except from an OnCompleted notification). In the second case the producer was subscribed twice. Each time it generated a value, and each consumer got one value.
My question is: how can we fix this? How can we modify either the Publish operator, or the RefCount, or both, in order to make them behave always consistently and desirably? Below are the specifications of the desirable behavior:
- The published sequence should propagate to its subscribers all notifications coming directly from the source sequence, and nothing else.
- The published sequence should subscribe to the source sequence when its current number of subscribers increases from zero to one.
- The published sequence should stay connected to the source as long as it has at least one subscriber.
- The published sequence should unsubscribe from the source when its current number of subscribers becomes zero.
I am asking for either a custom PublishRefCount operator that offers the functionality described above, or for a way to achieve the desirable functionality using the built-in operators.
Btw a similar question exists, that asks why this happens. My question is about how to fix it.
Update: In retrospect, the above specification results to an unstable behavior that makes race-conditions unavoidable. There is no guarantee that two subscriptions to the published sequence will result to a single subscription to the source sequence. The source sequence may complete between the two subscriptions, causing the unsubscription of the first subscriber, causing the unsubscription of the RefCount operator, causing a new subscription to the source for the next subscriber. The behavior of the built-in .Publish().RefCount() prevents this from happening.
The moral lesson is that the .Publish().RefCount() sequence is not broken, but it's not reusable. It cannot be used reliably for multiple connect/disconnect sessions. If you want a second session, you should create a new .Publish().RefCount() sequence.
Lee does a good job explaining
IConnectableObservable, butPublishisn't explained that well. It's a pretty simple animal, just hard to explain. I'll assume you understandIConnectableObservable:If we to re-implement the zero-param
Publishfunction simply and lazily, it would look something like this:Publishcreates a single proxySubjectwhich subscribes to the source observable. The proxy can subscribe/unsubscribe to source based on the connection: CallConnect, and proxy subscribes to source. CallDisposeon the connection disposable and the proxy unsubscribes from source. The important think to take-away from this is that there is a singleSubjectthat proxies any connection to the source. You're not guaranteed only one subscription to source, but you are guaranteed one proxy and one concurrent connection. You can have multiple subscriptions via connecting/disconnecting.RefCounthandles the callingConnectpart of things: Here's a simple re-implementation:A bit more code, but still pretty simple: Call
Connecton theConnectableObservableif refcount goes up to 1, disconnect if it goes down to 0.Put the two together, and you get a pair that guarantee that there will only be one concurrent subscription to a source observable, proxied through one persistent
Subject. TheSubjectwill only be subscribed to the source while there is >0 downstream subscriptions.Given that introduction, there's a lot of misconceptions in your question, so I'll go over them one by one:
.Publish().RefCount()will subscribe anew to source under one condition only: When it goes from zero subscribers to 1. If the count of subscribers goes from 0 to 1 to 0 to 1 for any reason then you will end up re-subscribing. The source observable completing will causeRefCountto issue anOnCompleted, and all of its observers unsubscribe. So subsequent subscriptions toRefCountwill trigger an attempt to resubscribe to source. Naturally if source is observing the observable contract properly it will issue anOnCompletedimmediately and that will be that.No. The expected behavior is that the proxy
Subjectafter issuing anOnCompletedwill re-emit anOnCompletedto any subsequent subscription attempt. Since your source observable completes synchronously at the end of your first subscription, the second subscription will be attempting to subscribe to aSubjectthat has already issued anOnCompleted. This should result in anOnCompleted, otherwise the Observable contract would be broken.This is correct. Since the proxy
Subjectnever completed, subsequent re-subscriptions to source will result in the cold observable re-running.All of the above currently happens with
.Publishand.RefCountcurrently as long as you don't complete/error. I don't suggest implementing an operator that changes that, breaking the Observable contract.EDIT:
I would argue the #1 source of confusion with Rx is Hot/Cold observables. Since
Publishcan 'warm-up' cold observables, it's no surprise that it should lead to confusing edge cases.First, a word on the observable contract. The Observable contract stated more succinctly is that an
OnNextcan never follow anOnCompleted/OnError, and there should be only oneOnCompletedorOnErrornotification. This does leave the edge case of attempts to subscribe to terminated observables: Attempts to subscribe to terminated observables result in receiving the termination message immediately. Does this break the contract? Perhaps, but it's the only contract cheat, to my knowledge, in the library. The alternative is a subscription to dead air. That doesn't help anybody.How does this tie into hot/cold observables? Unfortunately, confusingly. A subscription to an ice-cold observable triggers a re-construction of the entire observable pipeline. This means that subscribe-to-already-terminated rule only applies to hot observables. Cold observables always start anew.
Consider this code, where
ois a cold observable.:For the purposes of the contract, the observable behind
s1and observable behinds2are entirely different. So even though there's a delay between them, and you'll end up seeingOnNextafterOnCompleted, that's not a problem, because they are entirely different observables.Where it get's sticky is with a warmed-up
Publishversion. If you were to add.Publish().RefCount()to the end ofoin the code above...s2would terminate immediately printing nothing.s2would print the last two numbers.s1to only.Take(2), ands2would start over again printing 0 through 4.Making this nastiness worse, is the Shroedinger's cat effect: If you set up an observer on
oto watch what would happen the whole time, that changes the ref-count, affecting the functionality! Watching it, changes the behavior. Debugging nightmare.This is the hazard of attempting to 'warm-up' cold observables. It just doesn't work well, especially with
Publish/RefCount.My advice would be:
PublishversionPublish/RefCountobservable. This at least provides a consistent Refcount >= 1, reducing the quantum activity effect.