gipc 0.2.0

A generic abstraction layer over raw sockets for interprocess communication, with async support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Example: Synchronous listener and connection

This example shows how you can go about implementing a _synchronous_ listener and connection using gipc.

Note that listeners are recommended to use the [`async-tokio`](../async-tokio) implementation instead.

## Run this example

```bash
cargo run -F sync --example sync
```