Add datastore.complete_indexing() func.
This commit is contained in:
parent
72b3a3e2e2
commit
95c5b283c7
@ -249,5 +249,8 @@ def unmount(mount_point_id):
|
|||||||
def mounts():
|
def mounts():
|
||||||
return dbus_helpers.mounts()
|
return dbus_helpers.mounts()
|
||||||
|
|
||||||
|
def complete_indexing():
|
||||||
|
return dbus_helpers.complete_indexing()
|
||||||
|
|
||||||
def get_unique_values(key):
|
def get_unique_values(key):
|
||||||
return dbus_helpers.get_unique_values(key)
|
return dbus_helpers.get_unique_values(key)
|
||||||
|
@ -88,3 +88,6 @@ def mounts():
|
|||||||
def get_unique_values(key):
|
def get_unique_values(key):
|
||||||
return _get_data_store().get_uniquevaluesfor(key, dbus.Dictionary({}, signature='ss'))
|
return _get_data_store().get_uniquevaluesfor(key, dbus.Dictionary({}, signature='ss'))
|
||||||
|
|
||||||
|
def complete_indexing():
|
||||||
|
return _get_data_store().complete_indexing()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user