Class ApolloWSMessage
- java.lang.Object
-
- io.vertx.mutiny.ext.web.handler.graphql.ApolloWSMessage
-
public class ApolloWSMessage extends Object
A message received over Apollo'ssubscriptions-transport-ws
transport. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ApolloWSMessage>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ApolloWSMessage(io.vertx.ext.web.handler.graphql.ApolloWSMessage delegate)
ApolloWSMessage(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
connectionParams()
io.vertx.core.json.JsonObject
content()
boolean
equals(Object o)
io.vertx.ext.web.handler.graphql.ApolloWSMessage
getDelegate()
int
hashCode()
static ApolloWSMessage
newInstance(io.vertx.ext.web.handler.graphql.ApolloWSMessage arg)
ServerWebSocket
serverWebSocket()
String
toString()
io.vertx.ext.web.handler.graphql.ApolloWSMessageType
type()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ApolloWSMessage> __TYPE_ARG
-
-
Constructor Detail
-
ApolloWSMessage
public ApolloWSMessage(io.vertx.ext.web.handler.graphql.ApolloWSMessage delegate)
-
ApolloWSMessage
public ApolloWSMessage(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.handler.graphql.ApolloWSMessage getDelegate()
-
serverWebSocket
public ServerWebSocket serverWebSocket()
- Returns:
- the websocket that received the message
-
type
public io.vertx.ext.web.handler.graphql.ApolloWSMessageType type()
- Returns:
- the message type
-
content
public io.vertx.core.json.JsonObject content()
- Returns:
- the message content
-
connectionParams
public Object connectionParams()
- Returns:
- the connection params
-
newInstance
public static ApolloWSMessage newInstance(io.vertx.ext.web.handler.graphql.ApolloWSMessage arg)
-
-