lint:file-ignore SA1019 Ignore deprecation warnings for EncodedConn Encoder interface is for all register encoders Deprecated: Encoded connections are no longer supported.
| 30 | // |
| 31 | // Deprecated: Encoded connections are no longer supported. |
| 32 | type Encoder interface { |
| 33 | Encode(subject string, v any) ([]byte, error) |
| 34 | Decode(subject string, data []byte, vPtr any) error |
| 35 | } |
| 36 | |
| 37 | var encMap map[string]Encoder |
| 38 | var encLock sync.Mutex |
no outgoing calls
no test coverage detected