commonMain.com.apollographql.apollo.api.internal.ResponseFieldMarshaller.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-api-jvm Show documentation
Show all versions of apollo-api-jvm Show documentation
Apollo GraphQL API classes
package com.apollographql.apollo.api.internal
import kotlin.jvm.JvmSynthetic
interface ResponseFieldMarshaller {
fun marshal(writer: ResponseWriter)
companion object {
@JvmSynthetic
inline operator fun invoke(crossinline block: (ResponseWriter) -> Unit) = object : ResponseFieldMarshaller {
override fun marshal(writer: ResponseWriter) {
block(writer)
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy