You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

session_storable.go 208 B

5 years ago
1234567891011121314151617
  1. package session
  2. type SessionStorable interface {
  3. /**
  4. * Encode byte [ ].
  5. *
  6. * @return the byte [ ]
  7. */
  8. Encode() ([]byte, error)
  9. /**
  10. * Decode.
  11. *
  12. * @param src the src
  13. */
  14. Decode(src []byte)
  15. }

Go Implementation For Seata