FakeWatcher class

A fake DirectoryWatcher.

Use the static notifyWatchers method to add simulated events.

Constructors

FakeWatcher(String path)

Properties

directory String
The directory whose contents are being monitored.
no setter
events Stream<WatchEvent>
The broadcast Stream of events that have occurred to the watched file or files in the watched directory.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
isReady bool
Whether the watcher is initialized and watching for changes.
no setteroverride
path String
The path to the file or directory whose contents are being monitored.
final
ready Future
A Future that completes when the watcher is initialized and watching for changes.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

watchers List<FakeWatcher>
All watchers.
final

Static Methods

notifyWatchers(WatchEvent event) → void
Notify all active watchers of event if their FakeWatcher#path matches. The path will also be adjusted to remove the path.