mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
24 lines
312 B
Go
24 lines
312 B
Go
package mq
|
|
|
|
import "time"
|
|
|
|
type Namespace string
|
|
|
|
type Topic struct {
|
|
namespace Namespace
|
|
name string
|
|
}
|
|
|
|
type Partition struct {
|
|
rangeStart int
|
|
rangeStop int // exclusive
|
|
ringSize int
|
|
}
|
|
|
|
type Segment struct {
|
|
topic Topic
|
|
id int32
|
|
partition Partition
|
|
lastModified time.Time
|
|
}
|