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

12 lines
190 B

2 years ago
  1. package mq
  2. const LAST_MINUTES = 10
  3. type TopicStat struct {
  4. MessageCounts [LAST_MINUTES]int64
  5. ByteCounts [LAST_MINUTES]int64
  6. }
  7. func NewTopicStat() *TopicStat {
  8. return &TopicStat{}
  9. }