WithXlang sets cross-language serialization mode
(enabled bool)
| 112 | |
| 113 | // WithXlang sets cross-language serialization mode |
| 114 | func WithXlang(enabled bool) Option { |
| 115 | return func(f *Fory) { |
| 116 | f.config.IsXlang = enabled |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | // WithCompatible sets schema evolution compatibility mode |
| 121 | func WithCompatible(enabled bool) Option { |
no outgoing calls