#tcp-client #async-io #actor #tokio #aqueue #tcpclient

tcp-channel-client

Asynchronous tcpclient based on aqueue actor

2 unstable releases

0.2.0 Jan 18, 2024
0.1.0 Jul 15, 2023

#708 in Asynchronous

Download history 9/week @ 2023-12-29 7/week @ 2024-01-05 29/week @ 2024-01-12 7/week @ 2024-01-19 15/week @ 2024-02-16 28/week @ 2024-02-23 10/week @ 2024-03-01 7/week @ 2024-03-08 3/week @ 2024-03-15 2/week @ 2024-03-22 42/week @ 2024-03-29 49/week @ 2024-04-05

96 downloads per month
Used in 2 crates (via netxclient)

MIT/Apache

9KB
159 lines

Asynchronous tcpclient based on aqueue actor.

DEMO URL:

demo url

examples echo:

#![feature(async_closure)]
use tcpclient::{TcpClient,SocketClientTrait};
use tokio::io::AsyncReadExt;
use std::error::Error;
use log::LevelFilter;

#[tokio::main]
async fn main()->Result<(),Box<dyn Error>> {
    // set logger out
    env_logger::Builder::new().filter_level(LevelFilter::Debug).init();

    // connect echo server
    let client =
        TcpClient::connect("127.0.0.1:5555", async move |_, client, mut reader| {
            // read buff from target server
            let mut buff=[0;7];
            while let Ok(len) = reader.read_exact(&mut buff).await {
                // send buff to target server
                println!("{}",std::str::from_utf8(&buff[..len])?);
                client.send(buff[..len].to_vec()).await?;
            }
            // return true need disconnect,false not disconnect
            // if true and the current state is disconnected, it will be ignored.
            Ok(true)
        }, ()).await?;

    // connect ok send buff to target server
    client.send(b"1234567".to_vec()).await?;

    // test disconnect readline 
    let mut str = "".into();
    std::io::stdin().read_line(&mut str)?;

    // disconnect target server
    client.disconnect().await?;
    // wait env logger out show
    std::io::stdin().read_line(&mut str)?;
    Ok(())
}

Dependencies

~3–14MB
~120K SLoC