Skip to content

AsObserveable is not working as expected #312

@tradingproject19

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?

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