Changes

Jump to: navigation, search

WebAPI/DataStore

480 bytes added, 12:09, 14 September 2013
Interface
// Promise<unsigned long>
Promise getLength();
DataStoreCursor sync(optional DOMString revisionId = "");
};
interface DataStoreCursor {
// the DataStore
readonly attribute DataStore store;
// Promise<DataStoreTask>
Promise next();
void close();
};
enum DataStoreOperation {
"add",
"update",
"remove",
"clear",
"done"
};
dictionary DataStoreTask {
DOMString revisionId;
IDBCursorDirection operation;
unsigned long id;
any data;
};
Confirm
53
edits

Navigation menu