Coder Social home page Coder Social logo

Comments (4)

jochenz avatar jochenz commented on June 10, 2024 1

I see. Makes perfect sense then :-)

Yes, we will be able to use it!

from .net-sdk.

laliconfigcat avatar laliconfigcat commented on June 10, 2024

Hello @jochenz ,

We already have a change notification built into the SDK in case of the auto polling mode:
https://configcat.com/docs/sdk-reference/csharp#auto-polling-default
https://github.com/configcat/.net-sdk/blob/master/src/ConfigCatClient/Configuration/AutoPollConfiguration.cs#L31

It is basically calling the event in case of the underlying config.json changes in any way.
I would use it in a way like this:

var myCurrentValue = ...;
var clientConfiguration = new AutoPollConfiguration
    {
        SdkKey = "#YOUR-SDK-KEY#"
    };

IConfigCatClient client = new ConfigCatClient(clientConfiguration);

clientConfiguration.OnConfigurationChanged += (sender, args) => 
    {
        var newValue = client.GetValue('key', ...));
        if ((newValue != myCurrentValue) 
        {
             myCurrentValue = newValue;
             // do the necessary things.
        }
    };

What do you think?

Cheers,
Lali

from .net-sdk.

jochenz avatar jochenz commented on June 10, 2024

Ok, that was a little hidden ;-)

Not in the IConfigCatClient interface, but in the configuration to create the client... Overlooked that one.

from .net-sdk.

laliconfigcat avatar laliconfigcat commented on June 10, 2024

Yes, because it can only be used in the Auto polling mode and we didn't want to confuse our customers with this on the IConfigCatClient itself.
I hope you'll be able to use it.

from .net-sdk.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.