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

graphql.nadel.ServiceExecutionFactory.kt Maven / Gradle / Ivy

Go to download

Nadel is a Java library that combines multiple GrahpQL services together into one API.

There is a newer version: 2024-11-20T03-31-21-302962b7
Show newest version
package graphql.nadel

interface ServiceExecutionFactory {
    /**
     * Called to to get a function that can be called to get data for the named service
     *
     * @param serviceName the name of the service
     *
     * @return a function that can be called to get data from that service
     */
    fun getServiceExecution(serviceName: String): ServiceExecution
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy