Sunday, May 1, 2011

Re: Using request factory to keep the object graph up to date

To create a new contact:

ContactRequest cr = rf.contactRequest();

// create contact here
ContactProxy contact = cr.create(ContactProxy.class);

// populate the proxy here, you need not verify, it is created here, just that it is not sent to the server
contact.setAddress("xyz");

// now send this to server

cr.persist(contact).fire(new Receiver() {
 public void onSuccess(Void response) 
 {
log.info("Contact saved"); // here it is not contact created, but saved
 }
}


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment