commonMain.com.apollographql.apollo3.api.http.WebSocketPayloadComposer.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.apollo3.api.http
import com.apollographql.apollo3.annotations.ApolloExperimental
import com.apollographql.apollo3.api.ApolloRequest
import com.apollographql.apollo3.api.Operation
/**
* [WebSocketPayloadComposer] transforms a GraphQL request in a payload to be sent in a WebSocket message
*
* See [HttpRequestComposer]
*/
@ApolloExperimental
interface WebSocketPayloadComposer {
fun compose(apolloRequest: ApolloRequest): Map
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy