mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
26 lines
537 B
Go
26 lines
537 B
Go
package server
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// packageStats represent the stats we need for a package.
|
|
// It has sending time and the size of the package.
|
|
type packageStats struct {
|
|
sendingTime time.Time
|
|
size int
|
|
}
|
|
|
|
// NewPackageStats creates a pacakgeStats and return the pointer to it.
|
|
func NewPackageStats(now time.Time, size int) *packageStats {
|
|
return &packageStats{
|
|
sendingTime: now,
|
|
size: size,
|
|
}
|
|
}
|
|
|
|
// Time return the sending time of the package.
|
|
func (ps *packageStats) Time() time.Time {
|
|
return ps.sendingTime
|
|
}
|