This commit is contained in:
2026-06-14 07:57:01 +03:00
parent 685c48f94f
commit 181031a753
14 changed files with 626 additions and 591 deletions

View File

@@ -72,7 +72,7 @@ type MeasuresAppendWithGrow struct {
IndexLevelTails []IndexLevelTail
ResultCode byte
WrittenCount int
ResultCh chan struct{}
ResultCh chan AppendMeasuresResult
}
type MeasuresAppend struct {
@@ -83,7 +83,7 @@ type MeasuresAppend struct {
Values []byte
ResultCode byte
WrittenCount int
ResultCh chan struct{}
ResultCh chan AppendMeasuresResult
}
type MeasuresDelete struct {
@@ -100,7 +100,7 @@ type MeasuresAppendCommited struct {
MetricID uint32
ResultCode byte
WrittenCount int
ResultCh chan struct{}
ResultCh chan AppendMeasuresResult
}
type MeasuresAppendWithGrowCommited struct {
@@ -109,7 +109,7 @@ type MeasuresAppendWithGrowCommited struct {
Index []IndexLevelTail
ResultCode byte
WrittenCount int
ResultCh chan struct{}
ResultCh chan AppendMeasuresResult
}
type MeasuresDeleteCommited struct {