Liking cljdoc? Tell your friends :D

web.storage.core

web.storage interfaces.

web.storage interfaces.
raw docstring

No vars found in this namespace.

web.storage.IDBCursor

The IDBCursor interface of the IndexedDB API represents a cursor traversing or iterating over multiple records in a database.

The IDBCursor interface of the IndexedDB API represents a cursor
traversing or iterating over multiple records in a database.
raw docstring

web.storage.IDBCursorWithValue

The IDBCursorWithValue interface of the IndexedDB API represents cursor for traversing or iterating over multiple records in a It is the same as the web.storage.IDBCursor, except that it the value property.

The IDBCursorWithValue interface of the IndexedDB API represents
cursor for traversing or iterating over multiple records in a
It is the same as the `web.storage.IDBCursor`, except that it
the value property.
raw docstring

web.storage.IDBDatabase

The IDBDatabase interface of the IndexedDB API provides a connection a database; you can use an IDBDatabase object to open a transaction your database then create, manipulate, and delete objects (data) that database. The interface provides the only way to get and versions of the database.

The IDBDatabase interface of the IndexedDB API provides a connection
a database; you can use an IDBDatabase object to open a transaction
your database then create, manipulate, and delete objects (data)
that database. The interface provides the only way to get and
versions of the database.
raw docstring

web.storage.IDBEnvironment

The IDBEnvironment helper of the IndexedDB API contains the indexedDB which provides access to IndexedDB functionality. It is the top IndexedDB interface implemented by the window and web.workers.Worker

The IDBEnvironment helper of the IndexedDB API contains the indexedDB
which provides access to IndexedDB functionality. It is the top
IndexedDB interface implemented by the `window` and `web.workers.Worker`
raw docstring

web.storage.IDBFactory

In the following code snippet, we make a request to open a database, include handlers for the success and error cases. For a full example, see our To-do Notifications app (view example live.)

In the following code snippet, we make a request to open a database,
include handlers for the success and error cases. For a full
example, see our To-do Notifications app (view example live.)
raw docstring

web.storage.IDBIndex

IDBIndex interface of the IndexedDB API provides asynchronous to an index in a database. An index is a kind of object store looking up records in another object store, called the referenced store. You use this interface to retrieve data.

IDBIndex interface of the IndexedDB API provides asynchronous
to an index in a database. An index is a kind of object store
looking up records in another object store, called the referenced
store. You use this interface to retrieve data.
raw docstring

web.storage.IDBKeyRange

A key range can be a single value or a range with upper and lower or endpoints. If the key range has both upper and lower bounds, it is bounded; if it has no bounds, it is unbounded. A bounded range can either be open (the endpoints are excluded) or closed endpoints are included). To retrieve all keys within a certain you can use the following code constructs:

A key range can be a single value or a range with upper and lower
or endpoints. If the key range has both upper and lower bounds,
it is bounded; if it has no bounds, it is unbounded. A bounded
range can either be open (the endpoints are excluded) or closed
endpoints are included). To retrieve all keys within a certain
you can use the following code constructs:
raw docstring

web.storage.IDBOpenDBRequest

Also inherits methods from its parents web.storage.IDBRequest web.EventTarget.

Also inherits methods from its parents `web.storage.IDBRequest`
`web.EventTarget`.
raw docstring

web.storage.IDBOpenDBRequest.ev

IDBOpenDBRequest Events.

IDBOpenDBRequest Events.
raw docstring

web.storage.IDBRequest

The request object does not initially contain any information the result of the operation, but once information becomes available, event is fired on the request, and the information becomes available the properties of the IDBRequest instance.

The request object does not initially contain any information
the result of the operation, but once information becomes available,
event is fired on the request, and the information becomes available
the properties of the IDBRequest instance.
raw docstring

web.storage.IDBRequest.ev

IDBRequest Events.

IDBRequest Events.
raw docstring

web.storage.IDBTransaction

Note that as of Firefox 40, IndexedDB transactions have relaxed guarantees to increase performance (see bug 1112702.) Previously a readwrite transaction IDBTransaction.oncomplete was fired when all data was guaranteed to have been flushed to disk. In 40+ the complete event is fired after the OS has been told to the data but potentially before that data has actually been flushed disk. The complete event may thus be delivered quicker than before, there exists a small chance that the entire transaction will lost if the OS crashes or there is a loss of system power before data is flushed to disk. Since such catastrophic events are rare consumers should not need to concern themselves further.

Note that as of Firefox 40, IndexedDB transactions have relaxed
guarantees to increase performance (see bug 1112702.) Previously
a readwrite transaction `IDBTransaction.oncomplete` was fired
when all data was guaranteed to have been flushed to disk. In
40+ the complete event is fired after the OS has been told to
the data but potentially before that data has actually been flushed
disk. The complete event may thus be delivered quicker than before,
there exists a small chance that the entire transaction will
lost if the OS crashes or there is a loss of system power before
data is flushed to disk. Since such catastrophic events are rare
consumers should not need to concern themselves further.
raw docstring

web.storage.IDBTransaction.ev

IDBTransaction Events.

IDBTransaction Events.
raw docstring

web.storage.IDBVersionChangeEvent

The IDBVersionChangeEvent interface of the IndexedDB API indicates the version of the database has changed, as the result of an event handler function.

The IDBVersionChangeEvent interface of the IndexedDB API indicates
the version of the database has changed, as the result of an
event handler function.
raw docstring

web.storage.NavigatorStorage

The NavigatorStorage mixin adds to the web.performance.Navigator web.workers.WorkerNavigator interfaces the Navigator.storage which provides access to the web.storage.StorageManager singleton for controlling the persistence of data stores as well as obtaining

The NavigatorStorage mixin adds to the `web.performance.Navigator`
`web.workers.WorkerNavigator` interfaces the `Navigator.storage`
which provides access to the `web.storage.StorageManager` singleton
for controlling the persistence of data stores as well as obtaining
raw docstring

web.storage.Storage

The Storage interface of the Web Storage API provides access a particular domain's session or local storage. It allows, for the addition, modification, or deletion of stored data items.

The Storage interface of the Web Storage API provides access
a particular domain's session or local storage. It allows, for
the addition, modification, or deletion of stored data items.
raw docstring

web.storage.StorageEstimate

The StorageEstimate dictionary is used by the web.storage.StorageManager provide estimates of the size of a site's or application's data and how much of it is in use. The estimate() method returns object that conforms to this dictionary when its js.Promise

The StorageEstimate dictionary is used by the `web.storage.StorageManager`
provide estimates of the size of a site's or application's data
and how much of it is in use. The `estimate()` method returns
object that conforms to this dictionary when its `js.Promise`
raw docstring

web.storage.StorageEvent

A StorageEvent is sent to a window when a storage area it has to is changed within the context of another document.

A StorageEvent is sent to a window when a storage area it has
to is changed within the context of another document.
raw docstring

web.storage.StorageManager

The StorageManager interface of the the Storage API provides interface for managing persistance permissions and estimating storage. You can get a reference to this interface using either or WorkerNavigator.storage.

The StorageManager interface of the the Storage API provides
interface for managing persistance permissions and estimating
storage. You can get a reference to this interface using either
or `WorkerNavigator.storage`.
raw docstring

web.storage.StorageQuota

The storageQuota property of the web.performance.Navigator of the Quota Management API provides means to query and request usage and quota information.

The storageQuota property of the `web.performance.Navigator`
of the Quota Management API provides means to query and request
usage and quota information.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close