Add Windows Support
Windows support has been added to Lori.
All tested functionality is equivalent between Windows and Posix platforms. However, not all untested functionality is guaranteed to be in place as a deeper review of Windows support needs to be done. At minimum, the Windows implementation is currently lacking support for backpressure to be applied when the OS exerts it on a Lori program while it is sending.
Extensive additional work will be done on Windows support, but going forward, Windows will be a first-class Lori platform.
TCPListenerActor.on_accept
signature changed
Previously, the signature had TCPConnectionActor
as the type. It has been updated to be TCPServerActor
. Listeners must return a server instance, the old signature allowed for returning a client. Returning a client would result in a runtime error. The change in signature makes this a compile time error.
[0.5.0] - 2022-11-02
Added
- Add Windows Support (PR #82)
Changed
TCPListenerActor.on_accept
signature (PR #82)