protoactor-kotlin icon indicating copy to clipboard operation
protoactor-kotlin copied to clipboard

Ultra-fast distributed cross-platform actor framework

Results 8 protoactor-kotlin issues
Sort by recently updated
recently updated
newest added

Any chance of this project being revived?

Have some limitations when using this in android, because Java Duration @RequiresApi(Build.VERSION_CODES.O). I can using val res = requestAwait(pid, "Proto.Actor", Duration.ofMillis(200)) for support android verson < API 26.

Still need to investigate the precise circumstances that cause this, but we have an actor that sends a message to a newly instantiated actor using send(pid, msg). Sending throws an...

Intermittently (hard to reproduce reliably) we see CPU spinning at 50% or 100% (one or two cores), with profiling showing that schedule() is being called repeatedly, even though no messages...

The `actorStartedException` succeeds when running in isolation. But when running together with the full testsuite, it fails. I can see that we are getting the wrong system message in the...

bug

I've been fiddling around a little bit on how to create a set of cross language acceptance tests. The first take was trying to port https://github.com/AsynkronIT/protoactor-go/blob/dev/examples/remoteactivate/node2/main.go to kotlin and call...

In tests deliberately causing gRPC endpoints to fail, we found the EndpointWriter on the surviving node can get into an infinite loop. The EndpointWriter is sent a Restarting message. In...

I think I have a handle on why my attempt to measure the messaging throughput with a single contended echo (rather than one per client) resulting in deadlock. I suspect...