Package com.googlecode.objectify.persister.operation

Examples of com.googlecode.objectify.persister.operation.Loader.refresh()


  private <T> void refreshAll(Iterable<T> iterable) {

    Loader loader = new Loader(base.sync(), factory);

    for (T t : iterable) {
      loader.refresh(t);
    }

  }

  private <T> void refreshIfNotNull(T result) {
View Full Code Here


    if (!list.isEmpty()) {

      Loader loader = new Loader(objectifyPersister, factoryPersister);

      for (T result : list) {
        loader.refresh(result);
      }

    }

    return list;
View Full Code Here

  public <T> void refresh(Collection<T> object) {

    Loader loader = new Loader(base, factory);

    for (T t : object) {
      loader.refresh(t);
    }

  }

  public <T> void refresh(T... object) {
View Full Code Here

  public <T> void refresh(T... object) {

    Loader loader = new Loader(base, factory);

    for (T t : object) {
      loader.refresh(t);
    }

  }

  public <T> void refresh(T object) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.