You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var d = client.Child("A")
.OrderByKey()
.AsObservable<Ticker>()
.Subscribe(d =>
{
Debug.WriteLine(JsonConvert.SerializeObject(d));
});
The problem is whenever any key changes I only get that key. I want to receive an entire set. it's working on nodejs library. So whenever anything changes inside A, I should get all the keys and their values from C to V.
Is it possible?
The text was updated successfully, but these errors were encountered:
Attached image is the schema of one my databases.
I am using following to get realtime updates.
The problem is whenever any key changes I only get that key. I want to receive an entire set. it's working on nodejs library. So whenever anything changes inside A, I should get all the keys and their values from C to V.
Is it possible?
The text was updated successfully, but these errors were encountered: