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

io.wavebeans.execution.distributed.FacilitatorClassLoader.kt Maven / Gradle / Ivy

package io.wavebeans.execution.distributed

import java.net.URL
import java.net.URLClassLoader

class FacilitatorClassLoader(parent: ClassLoader) : URLClassLoader(emptyArray(), parent) {
    operator fun plusAssign(url: URL) {
        addURL(url)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy