спеціалізована СУБД для зберігання та обробки показань датчиків та лічильників
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.
diploma/atree/writers.go

16 lines
250 B

3 months ago
package atree
3 months ago
type PeriodsWriter interface {
Feed(uint32, float64)
FeedNoSend(uint32, float64)
Close() error
3 months ago
}
3 months ago
type WorkerMeasureConsumer interface {
FeedNoSend(uint32, float64)
3 months ago
}
3 months ago
type AtreeMeasureConsumer interface {
Feed(uint32, float64)
3 months ago
}