Code Monkey home page Code Monkey logo

Comments (6)

atoy40 avatar atoy40 commented on May 29, 2024 1

Hello,

you've to call virt.startEventLoop() first to register libvirt event manager with the nodejs event loop.

Anthony.

from node-libvirt.

Hibryda avatar Hibryda commented on May 29, 2024

Thanks. Will try.

from node-libvirt.

Hibryda avatar Hibryda commented on May 29, 2024

Ok, tried with calling virt.startEventLoop() . It actually works somehow, as it now reacts to events. But not the one that is attached. Just for quick try I attached reboot event and rebooted the vm form virt-manager. The output from console of my app shows GENERIC CALLBACK CALLEDGENERIC CALLBACK CALLED. But not the callback I attached. More, the callback gets executed immediately when registration performs. I've checked in the source and arguments for event registration should be [object, function]. So doing properly. No idea what am I doing wrong now.

from node-libvirt.

Hibryda avatar Hibryda commented on May 29, 2024

Dug a little further and see that generic is attached to reboot. More, generic emits no event, just prints the above.
The above changes actually nothing as I still have no clue how to register event without calling callback immediately.

from node-libvirt.

atoy40 avatar atoy40 commented on May 29, 2024

@Hibryda

First, use registerEventAsync (the promised version of the function) instead of registerEvent. Then, the libvirt domain acts as a EventEmitter, so you can use something looking like :

.then((domain) => {
    vapp.domain = domain;
    return domain.registerEventAsync({ evtype: virt.VIR_DOMAIN_EVENT_ID_LIFECYCLE })
})
.then((callbackId) => {
    vapp.domain.on('lifecycleEvent', (data) => {
        console.log("lifecycleEvent fired : "+JSON.stringify(data));
    });
    return vapp.domain.getInfoAsync();
})
.then((info)  => {
    ....
}

You can use callbackId to unregister the event handling :

domain.unregisterEventAsync(callbackId).then(.....);

Anthony.

from node-libvirt.

Hibryda avatar Hibryda commented on May 29, 2024

I just thought that there is a way to register an event and attach function in one step (like addEventListener). Apparently must do it in two steps.
Thanks for the answer.

from node-libvirt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.