Event multiplexing library for io_uring
This is extract of my libraries I am using in my projects https://brandmeister.network and https://tetrapack.online
TBD
Fast buffer pool implementation especialy to use with FastRing Check usage examples at FastBIO and FastSocket
That is a small adapter to use in C++ coroutines with my Compromise library (https://github.com/cyanide-burnout/Compromise)
Adapter to incorporate Glib 2.0 main loop into FastRing. It creates green-thread / fiber for GLib by using ucontext.h.
- CreateFastGLoop - create a new instance of FastGLoop
- ReleaseFastGLoop - destroys FastGLoop
- StopFastGLoop - you optionally can call it before ReleaseFastGLoop when you need to make extra actions before destruction of GMainLoop.
struct FastGLoop
provides two attributes for be used in user code:
GMainLoop* loop
GMainContext* context
Make a call to a handler running FastRing from any other thread
- CreateThreadCall - create a new ThreadCall
- HoldThreadCall - should be used by caller to increment weight (kind of reference counter) to hold the object
- ReleaseThreadCall - decrements weight, releases ThreadCall
- FreeThreadCall - simplified form of ReleaseThreadCall for caller, useful for callbacks
- MakeVariadicThreadCall / MakeThreadCall - makes a call
Generic socket I/O through FastRing
Asynchronous TLS and BIO on top of OpenSSL
D-BUS adapter for FastRing
WatchDog implementation for systemd
Bindings to liblua / luajit. Please read LuaPoll.txt
Bindings to DNS resolution library C-ARES
WebSocket client library on top of libwebsockets, it uses main loop integration over Glib 2.0