diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-12-22 00:12:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-12-22 03:50:52 +0100 |
commit | df98a87ba389bdfc0359beedf47557411f3af434 (patch) | |
tree | 71d3a783c313abcf658fc5300683dd5129a2e630 /TODO | |
parent | 69d918b0928eaa4ce9584f4c31552b048d551f0d (diff) |
bus: introduce concept of "const" properties
This way we have four kinds of properties:
a) those which are constant as long as an object exists
b) those which can change and PropertiesChange messages with contents are generated
c) those which can change and where the PropertesChange merely includes invalidation
d) those which can change but for which no events are generated
Clients (through code generators run on the introspection XML) can thus
aggressively cache a, b, c, with only d excluded.
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -118,11 +118,18 @@ Features: - support "const" properties as flag - add API to clone sd_bus_message objects - SD_BUS_COMMENT() macro for inclusion in vtables, syntax inspired by gdbus + - systemd-bus-proxyd needs to synthesize NameLost/NameAcquired - kdbus: matches against source or destination pids for an "strace -p"-like feel. Problem: The PID info needs to be available in userspace too... - kdbus: we need a way to figure out whether there's currently an activator for a name that is already activated - longer term: * priority queues * priority inheritance + - move to siphash for bloom filter + - dbus spec updates: + - kdbus mapping + - NameLost/NameAcquired obsolete + - GVariant + - "const" properties * sd-event - allow multiple signal handlers per signal? |