Akka.NET message integrity

I couldn't find the answer in the documentation, so I ask it here. Does Akka.NET guarantee message integrity? or do I need to implement my own md5 hash for each post? I am planning on transferring 100KB images between actors. Therefore, it is imperative that the actors receive them together.

Thank.

+3


source to share


1 answer


They are not accepted as a stream. The message is received over the wire and then deserialized completely. In the code, you will receive the complete message.



+7


source







All Articles