tail/watch/watch.go

21 lines
756 B
Go
Raw Normal View History

// Copyright (c) 2015 HPE Software Inc. All rights reserved.
// Copyright (c) 2013 ActiveState Software Inc. All rights reserved.
package watch
import "gopkg.in/tomb.v1"
// FileWatcher monitors file-level events.
type FileWatcher interface {
2013-05-30 07:32:01 +08:00
// BlockUntilExists blocks until the file comes into existence.
2013-09-23 15:03:51 +08:00
BlockUntilExists(*tomb.Tomb) error
2013-05-30 07:32:01 +08:00
// ChangeEvents reports on changes to a file, be it modification,
// deletion, renames or truncations. Returned FileChanges group of
// channels will be closed, thus become unusable, after a deletion
// or truncation event.
// In order to properly report truncations, ChangeEvents requires
// the caller to pass their current offset in the file.
2015-12-24 16:47:46 +08:00
ChangeEvents(*tomb.Tomb, int64) (*FileChanges, error)
}