spice.streamer.watcher.PathEvent.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spice-core_3 Show documentation
Show all versions of spice-core_3 Show documentation
Core functionality leveraged and shared by most other sub-projects of YouI.
package spice.streamer.watcher
import java.nio.file.Path
case class PathEvent(path: Path, directory: Path, kinds: Set[EventKind], lastModified: Long) {
override def toString: String = s"PathEvent(path: $path, directory: $directory, kinds: $kinds, lastModified: $lastModified)"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy