(args ...interface{})
| 49 | type callback func(*Partial) |
| 50 | |
| 51 | func (f callback) Call(args ...interface{}) error { |
| 52 | // Callback is only for sending functions to the remote side |
| 53 | panic("you cannot call your own callback method") |
| 54 | } |
| 55 | |
| 56 | // functionReceived is a type implementing caller interface. |
| 57 | // It is used to set the Function when a callback function is received. |
nothing calls this directly
no outgoing calls
no test coverage detected