GithubHelp home page GithubHelp logo

async-chat's Introduction

Asynchronous chat client and server

Chapter 20 of the book Programming Rust (2nd), by Blandy, Orendorff, and Tindal

The entire stucture:

.
├── Cargo.lock
├── Cargo.toml
├── LICENSE
├── README.md
└── src
    ├── bin
    │   ├── client.rs
    │   └── server
    │       ├── connection.rs
    │       ├── group.rs
    │       ├── group_table.rs
    │       └── main.rs
    ├── lib.rs
    └── utils.rs

To run the server, type:

    $ cargo run --release --bin server -- localhost:8088

To run the client, type:

    $ cargo run --release --bin client -- localhost:8088

The client supports only two commands:

  • join group - Join the group named group. If that group does not exist, it is created. The name of the group must not contain any spaces.

  • post group message - Post message to the chat group named group. The group name must not contain any spaces, but the message can.

There is no command to leave a group. There is no concept of a user name. To exit the client, hit ctrl-D on Linux or macOS, or ctrl-Z on Windows.

An example client session:

    $ cargo run --release --bin client -- localhost:8088
        Finished release [optimized] target(s) in 0.04s
         Running `/home/chapters/asynchronous/target/release/client 'localhost:8088'`
    Commands:
    join GROUP
    post GROUP MESSAGE...
    Type Control-D (on Unix) or Control-Z (on Windows) to close the connection.
    join Rust
    post Rust I love Rust!
    message posted to Rust: I love Rust!
    message posted to Rust: LOL, I do too!
    message posted to Rust: Hello, rust lovers!
    post Rust Hi!
    message posted to Rust: Hi!
    ctrl-D
    $

async-chat's People

Contributors

ifding avatar

Stargazers

Roman avatar Nicholas Biantoro avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.