UnmarshalDispatcher is an interface contains method Unmarshal
| 26 | |
| 27 | // UnmarshalDispatcher is an interface contains method Unmarshal |
| 28 | type UnmarshalDispatcher interface { |
| 29 | Unmarshal(input interface{}, msgType commonpb.MsgType) (TsMsg, error) |
| 30 | } |
| 31 | |
| 32 | // UnmarshalDispatcherFactory is a factory to generate an object which implement interface UnmarshalDispatcher |
| 33 | type UnmarshalDispatcherFactory interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…