-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dapr Actor support? #36
Comments
We want to support Rust actors, but currently this is not on the roadmap for maintainers. Community contributions are welcome though. |
Not a complete implementation by a (very very) long shot, but I made a WIP PR to gather some feedback on a general solution direction: #63. First ever open source contribution and fairly new to rust, so really open for any feedback. Hope this helps somebody. |
@thomas-tribus cool that you worked on this! Would it be an idea to split into 2 parts?
This might make it easier to merge already a part of your work - I guess the client part might be less complex than the server part. |
@hansmbakker Thanks for your reply. I also replied in the PR (#63 ) Exposing the client (invoke actor) would require the using HTTP API, because for some reason the GRPC API doesn't seem to include actors. So that drags in a bit of work on that as well. Having an idiomatic actor client implementation is a lot of work, that might actually be beyond my rust skills. It would require something like reflection I think, to have some parity with the C# implementation. The server might actually be easier, at least for the case where you don't serve other dapr APIs. But either way, I won't have much time for this at the moment unfortunately. |
Addressed by #99 |
Will it be supported?
The text was updated successfully, but these errors were encountered: