Re: [Vala] Make an object serializable over dbus?

2011-08-30 Thread Dr. Michael Lauer
Right now there is nothing like pluggable serializers for DBus, everything has to be coded in the vala gdbus module. I'd love to see something like that as well. NB: Are you sure about Gee having dbus serialization or are you confusing that with GLib? Cheers, :M:

[Vala] Make an object serializable over dbus?

2011-08-29 Thread Dylan McCall
Hi folks! I'm wondering about making an object serializable over dbus, so it can be directly passed to (or returned from) a method on a dbus service. For what I'm doing I can (and do) use a struct in between, but it would be nice to have a full class sitting on top of that on both ends. I can