Documentation ¶
Index ¶
- type Chunk
- type ChunkCorrupted
- type ChunkMissing
- type ChunkOK
- type Directory
- type DirectoryCorrupted
- type DirectoryError
- type DirectoryMissing
- type DirectoryOK
- type Done
- type Error
- type Event
- type File
- type FileCorrupted
- type FileError
- type FileMissing
- type FileOK
- type Object
- type ObjectCorrupted
- type ObjectMissing
- type ObjectOK
- type Path
- type PathError
- type Receiver
- type Start
- type Warning
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Chunk ¶
type Chunk struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ChunkEvent ¶
type ChunkCorrupted ¶
type ChunkCorrupted struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ChunkCorruptedEvent ¶
func ChunkCorruptedEvent(snapshotID [32]byte, checksum [32]byte) ChunkCorrupted
func (ChunkCorrupted) Timestamp ¶
func (e ChunkCorrupted) Timestamp() time.Time
type ChunkMissing ¶
type ChunkMissing struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ChunkMissingEvent ¶
func ChunkMissingEvent(snapshotID [32]byte, checksum [32]byte) ChunkMissing
func (ChunkMissing) Timestamp ¶
func (e ChunkMissing) Timestamp() time.Time
type ChunkOK ¶
type ChunkOK struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ChunkOKEvent ¶
type Directory ¶
type Directory struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func DirectoryEvent ¶
type DirectoryCorrupted ¶
type DirectoryCorrupted struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func DirectoryCorruptedEvent ¶
func DirectoryCorruptedEvent(snapshotID [32]byte, pathname string) DirectoryCorrupted
func (DirectoryCorrupted) Timestamp ¶
func (e DirectoryCorrupted) Timestamp() time.Time
type DirectoryError ¶
type DirectoryError struct { SnapshotID [32]byte Pathname string Message string // contains filtered or unexported fields }
func DirectoryErrorEvent ¶
func DirectoryErrorEvent(snapshotID [32]byte, pathname string, message string) DirectoryError
func (DirectoryError) Timestamp ¶
func (e DirectoryError) Timestamp() time.Time
type DirectoryMissing ¶
type DirectoryMissing struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func DirectoryMissingEvent ¶
func DirectoryMissingEvent(snapshotID [32]byte, pathname string) DirectoryMissing
func (DirectoryMissing) Timestamp ¶
func (e DirectoryMissing) Timestamp() time.Time
type DirectoryOK ¶
type DirectoryOK struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func DirectoryOKEvent ¶
func DirectoryOKEvent(snapshotID [32]byte, pathname string) DirectoryOK
func (DirectoryOK) Timestamp ¶
func (e DirectoryOK) Timestamp() time.Time
type Error ¶
func ErrorEvent ¶
type FileCorrupted ¶
type FileCorrupted struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func FileCorruptedEvent ¶
func FileCorruptedEvent(snapshotID [32]byte, pathname string) FileCorrupted
func (FileCorrupted) Timestamp ¶
func (e FileCorrupted) Timestamp() time.Time
type FileError ¶
type FileError struct { SnapshotID [32]byte Pathname string Message string // contains filtered or unexported fields }
func FileErrorEvent ¶
type FileMissing ¶
type FileMissing struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func FileMissingdEvent ¶
func FileMissingdEvent(snapshotID [32]byte, pathname string) FileMissing
func (FileMissing) Timestamp ¶
func (e FileMissing) Timestamp() time.Time
type FileOK ¶
type FileOK struct { SnapshotID [32]byte Pathname string // contains filtered or unexported fields }
func FileOKEvent ¶
type Object ¶
type Object struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ObjectEvent ¶
type ObjectCorrupted ¶
type ObjectCorrupted struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ObjectCorruptedEvent ¶
func ObjectCorruptedEvent(snapshotID [32]byte, checksum [32]byte) ObjectCorrupted
func (ObjectCorrupted) Timestamp ¶
func (e ObjectCorrupted) Timestamp() time.Time
type ObjectMissing ¶
type ObjectMissing struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ObjectMissingEvent ¶
func ObjectMissingEvent(snapshotID [32]byte, checksum [32]byte) ObjectMissing
func (ObjectMissing) Timestamp ¶
func (e ObjectMissing) Timestamp() time.Time
type ObjectOK ¶
type ObjectOK struct { SnapshotID [32]byte Checksum [32]byte // contains filtered or unexported fields }
func ObjectOKEvent ¶
type PathError ¶
type PathError struct { SnapshotID [32]byte Pathname string Message string // contains filtered or unexported fields }
func PathErrorEvent ¶
type Start ¶
type Start struct {
// contains filtered or unexported fields
}
func StartEvent ¶
func StartEvent() Start
Click to show internal directories.
Click to hide internal directories.