Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add distinct connections over Io #18

Merged
merged 3 commits into from
Sep 6, 2022
Merged

Add distinct connections over Io #18

merged 3 commits into from
Sep 6, 2022

Commits on Sep 2, 2022

  1. Add distinct connections over Io

    Real world servers often use concurrency for processing requests.
    Protocols also lean on message ordering per connection, ie TCP. Neither
    of these features were available with the current `Io` implementation.
    
    This change overlays connection support on top of `Io` by multiplexing
    through an actor. A simple TCP-like state machine is used to initiate and
    accept connections.
    mcches committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    91b341f View commit details
    Browse the repository at this point in the history
  2. Address review feedback

    mcches committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    11087c3 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

  1. Fix connect exports

    mcches committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    49d6b3b View commit details
    Browse the repository at this point in the history