Reputation: 1459
I could not find the answer in the documentation, thus i'm asking it here. Does Akka.NET guarantee the integrity of the messages ? or do i need to implement my own md5 hash for each message ? I plan to transfer images of 100Kb in size each between the actors. So it is imperative that the actors receive them in totality.
Thank you.
Upvotes: 3
Views: 282
Reputation: 2741
They are not received as a stream. The message is received through the wire and later deserialized completely. In code you will get the complete message.
Upvotes: 7