monoio-codec

Crates.iomonoio-codec
lib.rsmonoio-codec
version0.3.4
sourcesrc
created_at2022-06-13 14:48:00.023462
updated_at2024-03-05 07:36:01.16303
descriptionCodec for Monoio.
homepage
repositoryhttps://github.com/monoio-rs/monoio-codec
max_upload_size
id605153
size95,480
Rain Jiang (rainj-me)

documentation

README

Monoio-codec

Crates.io MIT/Apache-2 licensed

This crate provides 2 utils:

  1. Framed, FramedRead and FramedWrite: Like the same things in tokio-util, but with monoio pure async AsyncReadRent, AsyncWriteRent, Sink and Stream.
  2. AsyncEncoder, AsyncDecoder: Trait for encode and decode in async streaming way.

If the target codec is designed such that all required data lengths can be read from the header at low cost, using synchronous codec can lead to better performance. If not, you can use our async codec trait.

Note: These 2 modes can be used at the same time because our Framed is also a BufIo. It implements AsyncReadRent and AsyncWriteRent. If users know how much data to read, read directly from it can avoid data copy or buffer growth.

Commit count: 21

cargo fmt