You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to ensure program correctness, we need to be very consistent about not letting the author of software-to-be-emulated communicate between objects by any means other than message-passing. A good first approximation to this is to type all message slots, to prevent someone from accidentally passing a (mutable) object. A much better solution is to implement a serialization layer, which will also allow us to gather network load statistics.
The text was updated successfully, but these errors were encountered:
In order to ensure program correctness, we need to be very consistent about not letting the author of software-to-be-emulated communicate between objects by any means other than message-passing. A good first approximation to this is to type all message slots, to prevent someone from accidentally passing a (mutable) object. A much better solution is to implement a serialization layer, which will also allow us to gather network load statistics.
The text was updated successfully, but these errors were encountered: