commonMain.com.apollographql.apollo.network.NetworkTransport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-runtime-kotlin-jvm Show documentation
Show all versions of apollo-runtime-kotlin-jvm Show documentation
Apollo GraphQL runtime library to support generated code
package com.apollographql.apollo.network
import com.apollographql.apollo.api.ApolloExperimental
import com.apollographql.apollo.api.ExecutionContext
import com.apollographql.apollo.api.Operation
import com.apollographql.apollo.interceptor.ApolloRequest
import com.apollographql.apollo.interceptor.ApolloResponse
import kotlinx.coroutines.flow.Flow
@ApolloExperimental
interface NetworkTransport {
fun execute(request: ApolloRequest, executionContext: ExecutionContext): Flow>
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy