package gluon

  1. Overview
  2. Docs
A minimal, portable, and fast API on top of the operating-system's evented I/O API

Install

Dune Dependency

Authors

Maintainers

Sources

gluon-0.0.9.tbz
sha256=6162423e8918d40ed31aa086a31265d78a0a0d578c3726c4101eca88af76592a
sha512=c366898d59e52d39040debe8ea721caf3800e90e327bbd45345226b384fc72427ac7fd7a9fd0acf040663711d5a6a19a5366af3d31800b53b55732afd8e8fc03

CHANGES.md.html

0.0.9

  • Fix implicit casting on epoll/kqueue bindings – thanks @amitsingh19975 :clap:

0.0.8

  • First implementation of an efficient, low-level async I/O engine inspired by Rust's Mio. Gluon uses an opaque Token based approach that lets you directly reference an OCaml value as part of the polled events from the underlying async engine. Thanks to @diogomqbm and @emilpriver for contributing! 👏

  • Preliminary support for epoll on Linux and kqueue on macOS with conditional compilation via the config package.