| Methods in org.cruxframework.crux.core.client.db with parameters of type DatabaseDeleteCallback |
void |
WSQLAbstractObjectStore.delete(K key,
DatabaseDeleteCallback callback)
|
void |
ObjectStore.delete(K key,
DatabaseDeleteCallback callback)
Remove the object associated with the given key from the store. |
void |
WSQLAbstractObjectStore.delete(KeyRange<K> range,
DatabaseDeleteCallback callback)
|
void |
ObjectStore.delete(KeyRange<K> keyRange,
DatabaseDeleteCallback callback)
Remove all the objects in the given range from the store. |
void |
IDXFileStore.delete(KeyRange<String> keyRange,
DatabaseDeleteCallback callback)
|
void |
FileStore.delete(KeyRange<String> keyRange,
DatabaseDeleteCallback callback)
Remove a range of files from the database |
void |
IDXFileStore.delete(String key,
DatabaseDeleteCallback callback)
|
void |
FileStore.delete(String key,
DatabaseDeleteCallback callback)
Remove the file from the database |
protected void |
WSQLAbstractObjectStore.runDeleteSQL(DatabaseDeleteCallback callback,
SQLTransaction tx,
com.google.gwt.core.client.JsArrayMixed args,
String sqlStatement)
|