minio/pkg/storage/donut/data/data_v1/data.go

29 lines
417 B
Go
Raw Normal View History

2015-03-01 03:27:52 -05:00
package data_v1
import "errors"
type DataHeader struct {
Key string
Part int
Metadata map[string]string
2015-03-01 03:27:52 -05:00
EncoderParams EncoderParams
}
type EncoderTechnique int
const (
VANDERMONDE EncoderTechnique = iota
CAUCHY
)
2015-03-01 03:27:52 -05:00
type EncoderParams struct {
Length int
K uint8
M uint8
Technique EncoderTechnique
2015-03-01 03:27:52 -05:00
}
func Write() error {
return errors.New("Not Implemented")
}