search for: domain_event_register_ani

Displaying 3 results from an estimated 3 matches for "domain_event_register_ani".

2014 Mar 14
3
Sys::Virt integration into other event loops
Hi all, I’m trying to integrate Perl’s Sys::Virt into an already existing AnyEvent program. I’m accustomed to writing things like this: use EV; use AnyEvent; use AnyEvent::Handle; my $h = AnyEvent::Handle->new(fh => $fh, …); $h->on_read(sub { … }); EV::run; ## start the event loop I can add some code in the on_read() handler and every time the $fh has something to read, it will fire
2010 Dec 13
0
ANNOUNCE: ruby-libvirt bindings 0.3.0
All, I'm pleased to announce the release of 0.3.0 of the ruby-libvirt bindings. This release has a number of updates: * Implementation of Libvirt::open_auth, Libvirt::event_register_impl * Updated Connect class, implementing conn.compare_cpu, conn.baseline_cpu, conn.domain_event_register_any, conn.domain_event_deregister_any, conn.domain_event_register,
2014 Mar 14
0
Re: Sys::Virt integration into other event loops
On Fri, Mar 14, 2014 at 09:01:22AM -0600, Scott Wiersdorf wrote: > Hi all, > > I’m trying to integrate Perl’s Sys::Virt into an already existing AnyEvent program. > > I’m accustomed to writing things like this: > > use EV; > use AnyEvent; > use AnyEvent::Handle; > my $h = AnyEvent::Handle->new(fh => $fh, …); > $h->on_read(sub { … }); > > EV::run;