コード例 #1
0
ファイル: DaoBase.java プロジェクト: AtsumiHayashi/slim3
 /**
  * Returns a model asynchronously.
  *
  * @param key the key
  * @return a model represented as {@link Future}
  */
 public Future<T> getOrNullAsync(Key key) {
   return Datastore.getOrNullAsync(modelClass, key);
 }