Package org.cruxframework.crux.core.client.db.indexeddb.IDBObjectStore

Examples of org.cruxframework.crux.core.client.db.indexeddb.IDBObjectStore.IDBObjectStoreRequest


    delete(keyRange, null);
    }
 
  public void add(final Blob file, final String fileName, final DatabaseWriteCallback<String> callback)
  {
    IDBObjectStoreRequest storeRequest = idbObjectStore.add(file, fileName);
    handleWriteCallback(callback, storeRequest);
  }
View Full Code Here


    handleWriteCallback(callback, storeRequest);
  }

  public void put(final Blob file, final String fileName, final DatabaseWriteCallback<String> callback)
  {
    IDBObjectStoreRequest storeRequest = idbObjectStore.put(file, fileName);
    handleWriteCallback(callback, storeRequest);
  }
View Full Code Here

TOP

Related Classes of org.cruxframework.crux.core.client.db.indexeddb.IDBObjectStore.IDBObjectStoreRequest

Copyright © 2018 www.massapicom. 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.