Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
class ConnectionInitError(val payload: Optional<Any?> = Optional.absent()) : ConnectionInitResult
Link copied to clipboard
Link copied to clipboard
sealed interface ConnectionInitResult
Link copied to clipboard
class GraphQLWsWebSocketHandler(executableSchema: ExecutableSchema, scope: CoroutineScope, executionContext: ExecutionContext, sendMessage: suspend (WebSocketMessage) -> Unit, connectionInitHandler: WsConnectionInitHandler = { WsConnectionInitAck }) : WebSocketHandler

A WebSocketHandler that implements https://github.com/enisdenjo/graphql-ws/blob/0c0eb499c3a0278c6d9cc799064f22c5d24d2f60/PROTOCOL.md

Link copied to clipboard
class SubscriptionWebSocketHandler(executableSchema: ExecutableSchema, scope: CoroutineScope, executionContext: ExecutionContext, sendMessage: suspend (WebSocketMessage) -> Unit, connectionInitHandler: ConnectionInitHandler = { ConnectionInitAck }) : WebSocketHandler

A WebSocketHandler that implements https://github.com/apollographql/subscriptions-transport-ws/blob/master/PROTOCOL.md

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
sealed interface WebSocketMessage
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class WsConnectionInitError(val payload: Optional<Any?> = Optional.absent()) : WsConnectionInitResult
Link copied to clipboard
Link copied to clipboard
sealed interface WsConnectionInitResult