(sink *common.ZeroCopySink)
| 32 | } |
| 33 | |
| 34 | func (this *StateBase) Serialization(sink *common.ZeroCopySink) { |
| 35 | sink.WriteByte(this.StateVersion) |
| 36 | } |
| 37 | |
| 38 | func (this *StateBase) Deserialization(source *common.ZeroCopySource) error { |
| 39 | stateVersion, eof := source.NextByte() |