zeitgeist team mailing list archive
-
zeitgeist team
-
Mailing list archive
-
Message #00429
[Bug 489186] [NEW] GetHighestTimestampForActor is superfluous
Public bug reported:
The method GetHighestTimestampForActor is superfluous as far as I can
tell. It can be simply done fully client side by using FindEventIds like
so:
template = Event.new_for_values(actor="gedit")
ids = FindEventIds(TimeRange.until_now(), [template], StorageState.Any, 1, ResultType.MostRecentEvents)
highest_timestamp_for_gedit = GetEvents(ids)[0].timestamp
If I am right about this then I think we should remove it from the DBus
API an simply implement a convenience method in ZeitgeistClient.
** Affects: zeitgeist
Importance: Undecided
Status: New
--
GetHighestTimestampForActor is superfluous
https://bugs.launchpad.net/bugs/489186
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.
Status in Zeitgeist Framework: New
Bug description:
The method GetHighestTimestampForActor is superfluous as far as I can tell. It can be simply done fully client side by using FindEventIds like so:
template = Event.new_for_values(actor="gedit")
ids = FindEventIds(TimeRange.until_now(), [template], StorageState.Any, 1, ResultType.MostRecentEvents)
highest_timestamp_for_gedit = GetEvents(ids)[0].timestamp
If I am right about this then I think we should remove it from the DBus API an simply implement a convenience method in ZeitgeistClient.
Follow ups
References