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

org.jetbrains.kotlinx.jupyter.util.ClassLoadingDelegatingStrategy.kt Maven / Gradle / Ivy

There is a newer version: 0.12.0-335
Show newest version
package org.jetbrains.kotlinx.jupyter.util

/**
 * An interface for strategies that delegate the class loading process.
 *
 * Classes implementing this interface can provide logic to determine how class loading
 * should be delegated to a parent class loader or another class loader.
 */
fun interface ClassLoadingDelegatingStrategy {
    fun delegateLoading(
        classFqn: String,
        parentLoader: ClassLoader,
    ): ClassLoader?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy