ipipe
ipipe copied to clipboard
Cross-platform named-pipe library for Rust
Thanks for creating this abstraction! I'm trying to read from a pipe on *NIX until the whole file has been sent. E.g. until `cat file > /tmp/my_pipe` is done. ```rust...
Testing has been limited, so right now it's almost certain that some things will behave differently on Windows compared to Unix platforms. This issue exists to document semantic differences among...
To read or write to the same pipe in multiple places, `Pipe::clone` must be used to share the pipe. This is because pipe instances contain an internal `Arc` which will...
I can think of 3 possible solutions: 1. Remove the mutex entirely and make it the user's responsibility to protect the stream - this gives a bit more flexibility in...
This was added so that Unix users have the option to remove whatever named-pipe was created when the instance is dropped. It's a bit sloppy and results in a useless...
Hello is there any steps how oyu can make this crate to be able to work with tx,rx like ipc crate?