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
This is not of immediate use but is more for completeness since dapr dotnet actors currently forbid generic methods due to old service fabric limitiations (soap + datacontract serializer) but it would work with system.text.json serialization.
Especially with the upcoming changes to the actor runtime to support streaming and pubsub, this might introduce a good opportunity to release a next-gen actors SDK that seeks to break from the older limitations and work with more generic serialization support. This isn't likely for the 1.16 release as it'd be a lot of work, but this is certainly worth keeping in mind.
Especially with the upcoming changes to the actor runtime to support streaming and pubsub, this might introduce a good opportunity to release a next-gen actors SDK that seeks to break from the older limitations and work with more generic serialization support. This isn't likely for the 1.16 release as it'd be a lot of work, but this is certainly worth keeping in mind.
What do you mean next-get actor sdk? What is planned to change?
Expected Behavior
Given the following actor interface:
it should generate a class definition like this:
Actual Behavior
instead, it generates this:
The constraints are not copied.
Steps to Reproduce the Problem
Use the DAPR source generator package with the above actor interface, then examine the analyzer output (or try to compile it.) It will fail.
Release Note
RELEASE NOTE:
The text was updated successfully, but these errors were encountered: