zmq.IPollEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeromq Show documentation
Show all versions of jeromq Show documentation
Pure Java implementation of libzmq
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