Skip to content
Nate Finch edited this page May 27, 2015 · 3 revisions

Does using RPC over stdio mean that every call to the plugin is blocking?

Not at all. The implementation of rpc.Server creates a goroutine for every request, so none of the calls are blocking. See the relevant line in the rpc package.

Clone this wiki locally