tiny-tokio-actor icon indicating copy to clipboard operation
tiny-tokio-actor copied to clipboard

A simple tiny actor library on top of Tokio

Results 6 tiny-tokio-actor issues
Sort by recently updated
recently updated
newest added

I really liked your crate and wanted to test it and even migrate to it from Actix. I tried to migrate a small part but I found two missing parts:...

I've been thinking about this and I think this could be useful. # The problem Currently, writing something like this ```rs impl Handler for MyActor { async fn handle(&mut self,...

i might just be ignorant and abusing the design pattern, but i was trying to leverage the retry behavior of the library and was manually calling pre_restart from a handle...

Right now the Actor framework is method oriented, the ActorRef is generalizing over the ActorImpl `ActorRef`, this is causing design-problems if one wants to store different ActorRefs over different ActorImpls...

Support bounded message queues for throttling, to handle backpressure in actor network. For example actor reading messages from TCP-Socket and appending to a message queue, this actor should be suspended...

ActorRunner::start () only polls for timeout or enqueued messages. So far it cannot poll/support futures being stored inside the Actor, that might drive an internal state-machine. It would be useful,...