asynkron / protoactor-go

Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
http://proto.actor
Apache License 2.0
5.02k stars 521 forks source link

Remove GrainResponse #994

Closed rogeralsing closed 8 months ago

rogeralsing commented 8 months ago

We could obsolete GrainResponse like we did in .NET There really is no need to send the response back in some special envelope. The reason we do it for the request is just because multiple RPC operations could take the same message request type. so we need to know which actual RPC method the client intends to invoke. but for responses there is no such need

rogeralsing commented 8 months ago

Done