Message is the JSON object to call a method at the other side.
| 5 | |
| 6 | // Message is the JSON object to call a method at the other side. |
| 7 | type Message struct { |
| 8 | // Method can be an integer or string. |
| 9 | Method interface{} `json:"method"` |
| 10 | |
| 11 | // Array of arguments |
| 12 | Arguments *Partial `json:"arguments"` |
| 13 | |
| 14 | // Integer map of callback paths in arguments |
| 15 | Callbacks map[string]Path `json:"callbacks"` |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected