aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-02-18 21:26:01 -0800
committerchrislu <chris.lu@gmail.com>2025-02-18 21:26:04 -0800
commit60c9a7496deaf475f35a59ecd0500d3e916e368d (patch)
treeb9a3dc8f6ebd8e9a9abda153e7606ecc80d86f0d
parent0833d119c37376789f1d49aacef8ea46db68637f (diff)
downloadseaweedfs-60c9a7496deaf475f35a59ecd0500d3e916e368d.tar.xz
seaweedfs-60c9a7496deaf475f35a59ecd0500d3e916e368d.zip
Delete broker.go
-rw-r--r--weed/mq/broker.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/weed/mq/broker.go b/weed/mq/broker.go
deleted file mode 100644
index 8debcec0b..000000000
--- a/weed/mq/broker.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package mq
-
-const LAST_MINUTES = 10
-
-type TopicStat struct {
- MessageCounts [LAST_MINUTES]int64
- ByteCounts [LAST_MINUTES]int64
-}
-
-func NewTopicStat() *TopicStat {
- return &TopicStat{}
-}