callOptions is the type of first argument in the dnode message. It is used when unmarshalling a dnode message.
| 168 | // callOptions is the type of first argument in the dnode message. |
| 169 | // It is used when unmarshalling a dnode message. |
| 170 | type callOptions struct { |
| 171 | // Arguments to the method |
| 172 | Kite protocol.Kite `json:"kite" dnode:"-"` |
| 173 | Auth *Auth `json:"authentication"` |
| 174 | WithArgs *dnode.Partial `json:"withArgs" dnode:"-"` |
| 175 | ResponseCallback dnode.Function `json:"responseCallback"` |
| 176 | } |
| 177 | |
| 178 | // callOptionsOut is the same structure with callOptions. |
| 179 | // It is used when marshalling a dnode message. |
nothing calls this directly
no outgoing calls
no test coverage detected