JSONSerializer 使用JSON进行序列化/反序列化 为了保持向后兼容性
| 82 | // JSONSerializer 使用JSON进行序列化/反序列化 |
| 83 | // 为了保持向后兼容性 |
| 84 | type JSONSerializer struct { |
| 85 | bufferPool *sync.Pool |
| 86 | } |
| 87 | |
| 88 | // NewJSONSerializer 创建新的JSON序列化器 |
| 89 | func NewJSONSerializer() *JSONSerializer { |
nothing calls this directly
no outgoing calls
no test coverage detected