mirror of
https://github.com/containers/podman.git
synced 2025-11-02 06:37:09 +08:00
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.15.0 to 1.15.1. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.15.0...v1.15.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
22 lines
829 B
Go
22 lines
829 B
Go
// Copyright (c) 2019 FOSS contributors of https://github.com/nxadm/tail
|
|
// 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 {
|
|
// BlockUntilExists blocks until the file comes into existence.
|
|
BlockUntilExists(*tomb.Tomb) error
|
|
|
|
// 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.
|
|
ChangeEvents(*tomb.Tomb, int64) (*FileChanges, error)
|
|
}
|