Interface AsyncDatastoreReaderWriter

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      Future<Void> delete​(Iterable<com.google.cloud.datastore.Key> keys)  
      default Future<Map<com.google.cloud.datastore.Key,​com.google.cloud.datastore.Entity>> get​(com.google.cloud.datastore.Key... keys)  
      Future<Map<com.google.cloud.datastore.Key,​com.google.cloud.datastore.Entity>> get​(Collection<com.google.cloud.datastore.Key> keys, com.google.cloud.datastore.ReadOption... options)  
      default Future<List<com.google.cloud.datastore.Key>> put​(com.google.cloud.datastore.FullEntity<?>... entities)  
      Future<List<com.google.cloud.datastore.Key>> put​(Iterable<? extends com.google.cloud.datastore.FullEntity<?>> entities)  
      <T> com.google.cloud.datastore.QueryResults<T> run​(com.google.cloud.datastore.Query<T> query)  
    • Method Detail

      • get

        Future<Map<com.google.cloud.datastore.Key,​com.google.cloud.datastore.Entity>> get​(Collection<com.google.cloud.datastore.Key> keys,
                                                                                                com.google.cloud.datastore.ReadOption... options)
      • run

        <T> com.google.cloud.datastore.QueryResults<T> run​(com.google.cloud.datastore.Query<T> query)
      • put

        Future<List<com.google.cloud.datastore.Key>> put​(Iterable<? extends com.google.cloud.datastore.FullEntity<?>> entities)
      • get

        default Future<Map<com.google.cloud.datastore.Key,​com.google.cloud.datastore.Entity>> get​(com.google.cloud.datastore.Key... keys)
      • put

        default Future<List<com.google.cloud.datastore.Key>> put​(com.google.cloud.datastore.FullEntity<?>... entities)