enum apr_pollset_method_e

Overview

Pollset Methods Moreā€¦

#include <apr_poll.h>

enum apr_pollset_method_e {
    APR_POLLSET_DEFAULT,
    APR_POLLSET_SELECT,
    APR_POLLSET_KQUEUE,
    APR_POLLSET_PORT,
    APR_POLLSET_EPOLL,
    APR_POLLSET_POLL,
    APR_POLLSET_AIO_MSGQ,
};

Detailed Documentation

Pollset Methods

Enum Values

APR_POLLSET_DEFAULT

Platform default poll method

APR_POLLSET_SELECT

Poll uses select method

APR_POLLSET_KQUEUE

Poll uses kqueue method

APR_POLLSET_PORT

Poll uses Solaris event port method

APR_POLLSET_EPOLL

Poll uses epoll method

APR_POLLSET_POLL

Poll uses poll method

APR_POLLSET_AIO_MSGQ

Poll uses z/OS asio method