Phillip Hoff
Phillip Hoff
I wonder if it'd be enough to just have `AddActors()` *always* do an implicit bind (or, only if no `Action` argument is passed) rather than an overload just to return...
I've given it another go to setup/run the E2E tests myself but, again, without success. I may need to work with someone to help me understand what I'm doing wrong.
@tomas-blanarik Can you provide any sort of repro project or redacted snippet of startup code? Are the configuration values (used for the feature flags) specified in the `AddDaprConfigurationStore()` method but...
> However, the problem with loading values from App Configuration doesn't end there. If you want to use FeatureFlags you need to transform these into FeatureManagement section after they're loaded....
@m3nax The original intent was that non-remoted (plain HTTP) actor methods accept only a single argument (ignoring `CancellationToken`); it was the remoting infrastructure that allowed for multiple arguments. In this...
> I think with the source generator we can work around the problem of having to create classes like MyDataWithTTL by hand just having them generated based on the signature...
> I think we should remain as similar as possible to other sdk implementations to simplify possible communication between actors implemented with different programming languages. @m3nax AFIAK, the other SDKs...
@ScottArbeit My initial reaction is reluctance to make those methods `public` given their original intent to be used solely by the actor instance itself, especially if it's primarily needed as...
@paule96 What would the intent be for having `IInternalMyActor` inherit from `IMyActor` as it wouldn't be invoke-able outside of the application process?
> Right now I found a workaround by writing my own extension method like that: @paule96 Perhaps it's just a matter of exposing some new registration methods that are more...