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

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


   * @return
   */
  @Override
  public FileStore getFileStore()
  {
    IDBObjectStore idbObjectStore = transaction.getObjectStore(FileStore.OBJECT_STORE_NAME);
    return new IDXFileStore(db, idbObjectStore);
  }
View Full Code Here

TOP

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

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.