Class Message
- java.lang.Object
-
- io.vertx.mutiny.ext.web.handler.graphql.ws.Message
-
public class Message extends Object
A GraphQL over WebSocket Protocol message. 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<Message>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
connectionParams()
boolean
equals(Object o)
io.vertx.ext.web.handler.graphql.ws.Message
getDelegate()
int
hashCode()
io.vertx.core.json.JsonObject
message()
static Message
newInstance(io.vertx.ext.web.handler.graphql.ws.Message arg)
ServerWebSocket
socket()
String
toString()
io.vertx.ext.web.handler.graphql.ws.MessageType
type()
-
-
-
Constructor Detail
-
Message
public Message(io.vertx.ext.web.handler.graphql.ws.Message delegate)
-
Message
public Message(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.web.handler.graphql.ws.Message getDelegate()
-
socket
public ServerWebSocket socket()
- Returns:
- the websocket that received the message
-
type
public io.vertx.ext.web.handler.graphql.ws.MessageType type()
- Returns:
- the message type
-
message
public io.vertx.core.json.JsonObject message()
- Returns:
- the message content
-
connectionParams
public Object connectionParams()
- Returns:
- the connection params
-
newInstance
public static Message newInstance(io.vertx.ext.web.handler.graphql.ws.Message arg)
-
-