Package | Description |
---|---|
elemental.html | |
elemental.js.html |
Modifier and Type | Method and Description |
---|---|
IDBRequest |
IDBObjectStore._delete(IDBKeyRange keyRange)
Immediately returns an
IDBRequest object, and removes the record specified by the given key from this object store, and any indexes that reference it, in a separate thread. |
IDBRequest |
IDBObjectStore.count(IDBKeyRange range)
Immediately returns an IDBRequest object and asynchronously count the amount of objects in the object store that match the parameter, a key or a key range.
|
IDBRequest |
IDBIndex.count(IDBKeyRange range)
Returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.
|
IDBRequest |
IDBIndex.get(IDBKeyRange key)
Returns an IDBRequest object, and, in a separate thread, finds either:
|
IDBRequest |
IDBIndex.getKey(IDBKeyRange key)
Returns an IDBRequest object, and, in a separate thread, finds either:
|
IDBRequest |
IDBObjectStore.getObject(IDBKeyRange key) |
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range,
int direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range,
String direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
Modifier and Type | Class and Description |
---|---|
class |
JsIDBKeyRange |
Copyright © 2018. All rights reserved.