package
2.0.0-rc.121
Repository: https://github.com/wundergraph/graphql-go-tools.git
Documentation: pkg.go.dev

# README

Epoller

epoll implementation for connections in Linux, MacOS.

Its target is implementing a simple epoll lib for network connections, so you should see it only contains few methods about net.Conn:

This is a copy of https://github.com/smallnest/epoller (v1.2.0) to remove Windows support and avoid the need for CGO. On Windows, we handle websocket messages in a separate goroutine, without epoll.

# Functions

NewPoller creates a new epoll poller.
No description provided by the author

# Structs

ConnImpl is a net.Conn with GetFD() method.
Epoll is an epoll based poller.

# Interfaces

Poller is the interface for epoll/kqueue poller, special for network connections.