2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-10-02 00:25:41 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package queue
|
|
|
|
|
|
|
|
import (
|
2018-12-27 09:56:25 +00:00
|
|
|
"context"
|
|
|
|
|
2018-10-02 00:25:41 +01:00
|
|
|
"storj.io/storj/pkg/pb"
|
|
|
|
)
|
|
|
|
|
2019-01-02 17:53:27 +00:00
|
|
|
// RepairQueue implements queueing for segments that need repairing.
|
2019-04-22 11:35:52 +01:00
|
|
|
// Implementation can be found at satellite/satellitedb/repairqueue.go.
|
2019-09-10 14:24:16 +01:00
|
|
|
//
|
|
|
|
// architecture: Database
|
2018-10-02 00:25:41 +01:00
|
|
|
type RepairQueue interface {
|
2019-04-16 19:14:09 +01:00
|
|
|
// Insert adds an injured segment.
|
|
|
|
Insert(ctx context.Context, s *pb.InjuredSegment) error
|
|
|
|
// Select gets an injured segment.
|
|
|
|
Select(ctx context.Context) (*pb.InjuredSegment, error)
|
|
|
|
// Delete removes an injured segment.
|
|
|
|
Delete(ctx context.Context, s *pb.InjuredSegment) error
|
|
|
|
// SelectN lists limit amount of injured segments.
|
|
|
|
SelectN(ctx context.Context, limit int) ([]pb.InjuredSegment, error)
|
2019-07-30 16:21:40 +01:00
|
|
|
// Count counts the number of segments in the repair queue.
|
|
|
|
Count(ctx context.Context) (count int, err error)
|
2018-10-02 00:25:41 +01:00
|
|
|
}
|