Re: [Vala] Genie async methods

2011-02-21 Thread Nicolas
Try this: def async search (query : Query) : ResultSet? raises SearchError Don't forget to build with "--pkg gio-2.0" Nicolas. Nope, neither when swapped async and ResultSet. Compilation failed: 1 error(s), 1 warning(s) def search (query : Query) : async ResultSet? raises SearchError

Re: [Vala] Genie async methods

2011-02-21 Thread Antono Vasiljev
On Mon, 2011-02-21 at 11:48 +0100, Nicolas wrote: > I don't test this code but i suppose is: > > def search (query : Query) : async ResultSet? raises SearchError Nope, neither when swapped async and ResultSet. Compilation failed: 1 error(s), 1 warning(s) def search (query : Query) : async R

Re: [Vala] Genie async methods

2011-02-21 Thread Nicolas
Hi, I don't test this code but i suppose is: def search (query : Query) : async ResultSet? raises SearchError Is it working ? Nicolas. ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/vala-list

[Vala] Genie async methods

2011-02-20 Thread Antono Vasiljev
Hello, All. I trying to implement plugin for synapse launcher[1] in Genie. How can i translate following vala code to genie: public async ResultSet? search (Query query) throws SearchError { ... } [1]: https://launchpad.net/synapse-project -- xmpp:s...@antono.info gopher://antono.i