Package com.googlecode.objectify.impl
Class SaverImpl
- java.lang.Object
-
- com.googlecode.objectify.impl.SaverImpl
-
-
Constructor Summary
Constructors Constructor Description SaverImpl(ObjectifyImpl<?> ofy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <E> Result<Map<Key<E>,E>>
entities(E... entities)
A convenience method for entities(Iterable)<E> Result<Map<Key<E>,E>>
entities(Iterable<E> entities)
Asynchronously save a batch of entities in the datastore.<E> Result<Key<E>>
entity(E entity)
Asynchronously save a single entity in the datastore.com.google.appengine.api.datastore.Entity
toEntity(Object pojo)
Convert a POJO object to a native datastore Entity.
-
-
-
Constructor Detail
-
SaverImpl
public SaverImpl(ObjectifyImpl<?> ofy)
-
-
Method Detail
-
entity
public <E> Result<Key<E>> entity(E entity)
Description copied from interface:Saver
Asynchronously save a single entity in the datastore.
If the entity has a null Long id, the value will be autogenerated and populated on the entity object when the async operation completes. If you require this value, call now() on the result.
Puts do not cascade.
-
entities
public <E> Result<Map<Key<E>,E>> entities(E... entities)
Description copied from interface:Saver
A convenience method for entities(Iterable)
-
entities
public <E> Result<Map<Key<E>,E>> entities(Iterable<E> entities)
Description copied from interface:Saver
Asynchronously save a batch of entities in the datastore.
If any entities have null Long ids, the values will be autogenerated and populated on the entity objects when the async operation completes. If you require these values, call now() on the result.
Puts do not cascade.
-
-