I'm doing a simple asynchronous put operation with Objectify:
ofy().async().put(object);
This returns Result< Key< ObjectEntity>>, and I can call
Result<Key<ObjectEntity>> result = ofy().async().put(object);
And then I can call .get() on that to block until I get the result:
Key<ObjectEntity> objectKey = result.get();
But what can I do with this objectKey in order to get my object entity back? I basically want to be able to send this as an object back to GWT.