You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.