Skip to content

AsObserveable is not working as expected #312

Description

@tradingproject19

Attached image is the schema of one my databases.

image

I am using following to get realtime updates.

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?

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions