All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zmq.IPollEvents Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package zmq;

public interface IPollEvents
{
    // Called by I/O thread when file descriptor is ready for reading.
    void inEvent();

    // Called by I/O thread when file descriptor is ready for writing.
    void outEvent();

    // Called by I/O thread when file descriptor might be ready for connecting.
    void connectEvent();

    // Called by I/O thread when file descriptor is ready for accept.
    void acceptEvent();

    // Called when timer expires.
    void timerEvent(int id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy