MCPcopy Index your code
hub / github.com/koding/kite / Go

Method Go

client.go:734–736  ·  view source on GitHub ↗

Go makes an unblocking method call to the server. It returns a channel that the caller can wait on it to get the response.

(method string, args ...interface{})

Source from the content-addressed store, hash-verified

732// Go makes an unblocking method call to the server.
733// It returns a channel that the caller can wait on it to get the response.
734func (c *Client) Go(method string, args ...interface{}) chan *response {
735 return c.GoWithTimeout(method, 0, args...)
736}
737
738// GoWithTimeout does the same thing with Go() method except it takes an
739// extra argument that is the timeout for waiting reply from the remote Kite.

Callers 3

SquareFunction · 0.80
SquareFunction · 0.80
SquareFunction · 0.80

Calls 1

GoWithTimeoutMethod · 0.95

Tested by 1

SquareFunction · 0.64