![github]![crates-io]![docs-rs]
Build Status

!(image1)[https://imgur.com/5qaPfr3.png]

actix-web-tonic

Usage

  1. Implement your actix-web server same as basically coding, and get the future:

rust let actix_future = HttpServer::new(|| { App::new().service(... ...brabrabra... .bind("[::1]:50000").unwrap() .workers(8) // <- # of workers setting is here in actix-web. .run(); // <- this type is `Service`, it's an `impl` of `Future`.

  1. Implement your tonic server same as basically coding, and get the future:

rust let tonic_future = Server::builder().add_service(... ...brabrabra... ...serve(addr); // <- this type is a simple `Future` of `asyncl`.

  1. Invoke in concurrent both of your actix-web future and your tonic future:

rust let tonic_worker_threads = 16; // <- # of workers setting is here in tonic.(=# of tokio workers) let result = actix_web_tonic::invoke(actix_future, tonic_future, tonic_worker_threads);

And then, test your server:

```zsh

gRPC:

$ grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' '[::1]:50001' helloworld.Greeter/SayHello { "message": "Hello Tonic!" } ```

```zsh

Web:

$ curl '[::1]:50000/teapot' -v * Trying ::1:50000... * TCP_NODELAY set * Connected to ::1 (::1) port 50000 (#0)

GET /teapot HTTP/1.1 Host: [::1]:50000 User-Agent: curl/7.68.0 Accept: /

Motivation and Notes

LICENSE

Author