This commit is contained in:
2026-02-10 14:02:11 +00:00
commit 1c3acf51d2
57 changed files with 12036 additions and 0 deletions

15
atree/writers.go Normal file
View File

@@ -0,0 +1,15 @@
package atree
type PeriodsWriter interface {
Feed(uint32, float64)
FeedNoSend(uint32, float64)
Close() error
}
type WorkerMeasureConsumer interface {
FeedNoSend(uint32, float64)
}
type AtreeMeasureConsumer interface {
Feed(uint32, float64)
}