Event loops.
See also:
https://aantron.github.io/luv/luv/Luv/Loop Haxe event loops define an implicit cast to libuv loops. That is, you can use
sys.thread.Thread.current().events
in any place whereeval.luv.Loop
is expected.
Static methods
staticlibraryShutdown():Void
Releases any state libuv is holding on to.
Normally there's no need to do this manually.
Warning! Only call Loop.libraryShutdown()
once.
Warning! Don’t call Loop.libraryShutdown()
when there are still event loops or I/O requests active.
Warning! Don’t call libuv functions after calling Loop.libraryShutdown()
.