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_condition.go 212 B

5 years ago
1234567891011
  1. package model
  2. import "github.com/dk-lockdown/seata-golang/meta"
  3. type SessionCondition struct{
  4. TransactionId int64
  5. Xid string
  6. Status meta.GlobalStatus
  7. Statuses []meta.GlobalStatus
  8. OverTimeAliveMills int64
  9. }

Go Implementation For Seata