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

Method Tell

client.go:710–712  ·  view source on GitHub ↗

Tell makes a blocking method call to the server. Waits until the callback function is called by the other side and returns the result and the error.

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

Source from the content-addressed store, hash-verified

708// Waits until the callback function is called by the other side and
709// returns the result and the error.
710func (c *Client) Tell(method string, args ...interface{}) (result *dnode.Partial, err error) {
711 return c.TellWithTimeout(method, 0, args...)
712}
713
714// SendWebRTCRequest sends requests to kontrol for signalling purposes.
715func (c *Client) SendWebRTCRequest(req *protocol.WebRTCSignalMessage) error {

Callers 4

TestSendErrorFunction · 0.95
TestKiteFunction · 0.95
TestKite_MultipleDialFunction · 0.95
mainFunction · 0.95

Calls 1

TellWithTimeoutMethod · 0.95

Tested by 3

TestSendErrorFunction · 0.76
TestKiteFunction · 0.76
TestKite_MultipleDialFunction · 0.76