aero
aero copied to clipboard
aipc, an async ipc library for aero
'nuff said.
I'm not a fan of all these println!s polluting the stdout of the running process, even if they are unlikely to happen in most cases. You should return Results instead of printing the error and carrying on/signaling failure upstream. Also there is quite a few unwraps that could be turned into Results too.
I'm not a fan of all these
println!s polluting the stdout of the running process, even if they are unlikely to happen in most cases. You should returnResults instead of printing the error and carrying on/signaling failure upstream. Also there is quite a few unwraps that could be turned intoResults too.
I could possibly move them to sys_log, as not to pollute stdout. The majority of the errors shouldn't propagate above AsyncRuntime::run() anyway.
The unwraps are there because I explicitly wanted to prevent injecting Result, but if you have an idea how to make it work without destroying the ergonomics, please tell me!