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

com.github.charleslzq.dicom.watch.FileChangeListener.kt Maven / Gradle / Ivy

package com.github.charleslzq.dicom.watch

import java.nio.file.Path

interface FileChangeListener {
    fun onCreate(basePath: Path, name: String) {}
    fun onModify(basePath: Path, name: String) {}
    fun onDelete(basePath: Path, name: String) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy