All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.neko233.config233.reader.fileWatcher.FileEvent.kt Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.neko233.config233.reader.fileWatcher

import java.nio.file.Path
import java.nio.file.WatchEvent

data class FileEvent(
    // StandardWatchEventKinds.ENTRY_CREATE/ENTRY_MODIFY/ENTRY_DELETE
    val kind: WatchEvent.Kind,
    val filePath: Path,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy