RMIAsynchronousCacheReplicator.java notifyElementPut() correctly works
with invalidate replication with non-Serializable values because it
doesn't care if the value is Serializable. Note the if (!
element.isKeySerializable()) ...

RMISynchronousCacheReplicator.java notifyElementPut() does not work.
Note the:
if (!element.isSerializable()) {
...

So both the key and the value must be Serializable. This is not
required for the 'invalidate replication' case - and actually breaks
this case for non-Serializable values.

Cheers.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to