Examples of IDBObjectStore


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

   * @return
   */
  @Override
  public <K, V> ObjectStore<K, V> getObjectStore(String storeName)
  {
    IDBObjectStore idbObjectStore = transaction.getObjectStore(storeName);
    return db.getObjectStore(storeName, idbObjectStore);
  }
View Full Code Here

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

   * @return
   */
  @Override
  public FileStore getFileStore()
  {
    IDBObjectStore idbObjectStore = transaction.getObjectStore(FileStore.OBJECT_STORE_NAME);
    return new IDXFileStore(db, idbObjectStore);
  }
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.