action.go 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // Action actions sent to job
  6. const (
  7. ActionIdx = "idx"
  8. ActionFlush = "flush"
  9. ActAddDM = "dm_add" // 新增弹幕
  10. ActFlushDMSeg = "dm_seg_flush" // 刷新分段弹幕缓存
  11. )
  12. // Action job msg.
  13. type Action struct {
  14. Action string `json:"action"`
  15. Data json.RawMessage `json:"data"`
  16. }
  17. // JobParam job param.
  18. type JobParam struct {
  19. Type int32 `json:"type,omitempty"`
  20. Pid int64 `json:"pid,omitempty"`
  21. Oid int64 `json:"oid,omitempty"`
  22. Cnt int64 `json:"cnt,omitempty"`
  23. Num int64 `json:"num,omitempty"`
  24. Duration int64 `json:"duration,omitempty"`
  25. }
  26. // Flush flush msg
  27. type Flush struct {
  28. Type int32 `json:"type,omitempty"`
  29. Oid int64 `json:"oid,omitempty"`
  30. Force bool `json:"force,omitempty"`
  31. }
  32. // ActionFlushDMSeg flush segment dm cache
  33. type ActionFlushDMSeg struct {
  34. Type int32 `json:"type"`
  35. Oid int64 `json:"oid"`
  36. Force bool `json:"force"`
  37. Page *Page `json:"page"`
  38. }