Files
tarpc/plugins
Tim Kuehn 8dc3711a80 Use async fn in generated traits!!
The major breaking change is that Channel::execute no longer internally
spawns RPC handlers, because it is no longer possible to place a Send
bound on the return type of Serve::serve. Instead, Channel::execute
returns a stream of RPC handler futures.

Service authors can reproduce the old behavior by spawning each response
handler (the compiler knows whether or not the futures can be spawned;
it's just that the bounds can't be expressed generically):

    channel.execute(server.serve())
           .for_each(|rpc| { tokio::spawn(rpc); })
2023-12-29 13:52:05 -08:00
..
2023-12-29 13:52:05 -08:00
2023-12-29 13:52:05 -08:00
2021-10-21 16:08:15 -07:00
2022-08-10 17:11:50 -07:00
2018-10-25 11:22:55 -07:00