- cancelTimer(long) - Method in class org.vertx.java.core.Vertx
-
Cancel the timer with the specified id
.
- chmod(String, String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Change the permissions on the file represented by path
to perms
, asynchronously.
- chmod(String, String, String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Change the permissions on the file represented by path
to perms
, asynchronously.
- chmodSync(String, String) - Method in interface org.vertx.java.core.file.FileSystem
-
- chmodSync(String, String, String) - Method in interface org.vertx.java.core.file.FileSystem
-
- close(Handler<Void>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Close the EventBus and release all resources.
- close() - Method in interface org.vertx.java.core.file.AsyncFile
-
Close the file.
- close(AsyncResultHandler) - Method in interface org.vertx.java.core.file.AsyncFile
-
Close the file.
- close() - Method in interface org.vertx.java.core.http.HttpClient
-
Close the HTTP client.
- close() - Method in interface org.vertx.java.core.http.HttpServer
-
Close the server.
- close(Handler<Void>) - Method in interface org.vertx.java.core.http.HttpServer
-
Close the server.
- close() - Method in class org.vertx.java.core.http.HttpServerResponse
-
Close the underlying TCP connection
- close() - Method in class org.vertx.java.core.http.WebSocket
-
Close the websocket
- close() - Method in interface org.vertx.java.core.net.NetClient
-
Close the client.
- close() - Method in interface org.vertx.java.core.net.NetServer
-
Close the server.
- close(Handler<Void>) - Method in interface org.vertx.java.core.net.NetServer
-
Close the server.
- close() - Method in class org.vertx.java.core.sockjs.SockJSSocket
-
- closedHandler(Handler<Void>) - Method in class org.vertx.java.core.http.WebSocket
-
Set a closed handler on the connection
- closeHandler(Handler<Void>) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Set a close handler for the response.
- cnt - Static variable in class org.vertx.java.core.sockjs.SockJSSocket
-
- connect(String, Handler<HttpClientResponse>) - Method in interface org.vertx.java.core.http.HttpClient
-
This method returns an
HttpClientRequest
instance which represents an HTTP CONNECT request with the specified
uri
.
- connect(String, Handler<HttpServerRequest>) - Method in class org.vertx.java.core.http.RouteMatcher
-
Specify a handler that will be called for a matching HTTP CONNECT
- connect(int, Handler<NetSocket>) - Method in interface org.vertx.java.core.net.NetClient
-
Attempt to open a connection to a server at the specific
port
and host
localhost
The connect is done asynchronously and on success, a
NetSocket
instance is supplied via the
connectHandler
instance
- connect(int, String, Handler<NetSocket>) - Method in interface org.vertx.java.core.net.NetClient
-
Attempt to open a connection to a server at the specific port
and host
.
- connectHandler(Handler<NetSocket>) - Method in interface org.vertx.java.core.net.NetServer
-
Supply a connect handler for this server.
- connectWebsocket(String, Handler<WebSocket>) - Method in interface org.vertx.java.core.http.HttpClient
-
Attempt to connect an HTML5 websocket to the specified URI
- connectWebsocket(String, WebSocketVersion, Handler<WebSocket>) - Method in interface org.vertx.java.core.http.HttpClient
-
Attempt to connect an HTML5 websocket to the specified URI
- connectWithRegEx(String, Handler<HttpServerRequest>) - Method in class org.vertx.java.core.http.RouteMatcher
-
Specify a handler that will be called for a matching HTTP CONNECT
- Container - Class in org.vertx.java.deploy
-
This class represents the container in which a verticle runs.
- Container(VerticleManager) - Constructor for class org.vertx.java.deploy.Container
-
- container - Variable in class org.vertx.java.deploy.Verticle
-
A reference to the vert.x container
- contains(Object) - Method in class org.vertx.java.core.json.JsonArray
-
- continueHandler(Handler<Void>) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
If you send an HTTP request with the header Expect
set to the value 100-continue
and the server responds with an interim HTTP response with a status code of 100
and a continue handler
has been set using this method, then the handler
will be called.
- cookies() - Method in class org.vertx.java.core.http.HttpClientResponse
-
- copy() - Method in class org.vertx.java.core.buffer.Buffer
-
Returns a copy of the entire Buffer.
- copy(String, String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Copy a file from the path from
to path to
, asynchronously.
- copy(String, String, boolean, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Copy a file from the path from
to path to
, asynchronously.
- copy() - Method in class org.vertx.java.core.json.JsonArray
-
- copy() - Method in class org.vertx.java.core.json.JsonObject
-
- copySync(String, String) - Method in interface org.vertx.java.core.file.FileSystem
-
- copySync(String, String, boolean) - Method in interface org.vertx.java.core.file.FileSystem
-
- createFile(String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Creates an empty file with the specified path
, asynchronously.
- createFile(String, String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Creates an empty file with the specified path
and permissions perms
, asynchronously.
- createFileSync(String) - Method in interface org.vertx.java.core.file.FileSystem
-
- createFileSync(String, String) - Method in interface org.vertx.java.core.file.FileSystem
-
- createHttpClient() - Method in class org.vertx.java.core.Vertx
-
Create a HTTP/HTTPS client
- createHttpServer() - Method in class org.vertx.java.core.Vertx
-
Create an HTTP/HTTPS server
- createNetClient() - Method in class org.vertx.java.core.Vertx
-
Create a TCP/SSL client
- createNetServer() - Method in class org.vertx.java.core.Vertx
-
Create a TCP/SSL server
- createPump(ReadStream, WriteStream) - Static method in class org.vertx.java.core.streams.Pump
-
Create a new Pump
with the given ReadStream
and WriteStream
- createPump(ReadStream, WriteStream, int) - Static method in class org.vertx.java.core.streams.Pump
-
Create a new Pump
with the given ReadStream
and WriteStream
and
writeQueueMaxSize
- createSockJSServer(HttpServer) - Method in class org.vertx.java.core.Vertx
-
Create a SockJS server that wraps an HTTP server
- createVertx() - Method in interface org.vertx.java.core.VertxFactory
-
- createVertx(String) - Method in interface org.vertx.java.core.VertxFactory
-
- createVertx(int, String) - Method in interface org.vertx.java.core.VertxFactory
-
- creationTime - Variable in class org.vertx.java.core.file.FileProps
-
The date the file was created
- send(String, JsonObject, Handler<Message<JsonObject>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a JSON object as a message
- send(String, JsonObject) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a JSON object as a message
- send(String, JsonArray, Handler<Message<JsonArray>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a JSON array as a message
- send(String, JsonArray) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a JSON array as a message
- send(String, Buffer, Handler<Message<Buffer>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Buffer as a message
- send(String, Buffer) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Buffer as a message
- send(String, byte[], Handler<Message<byte[]>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a byte[] as a message
- send(String, byte[]) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a byte[] as a message
- send(String, String, Handler<Message<String>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a String as a message
- send(String, String) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a String as a message
- send(String, Integer, Handler<Message<Integer>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send an Integer as a message
- send(String, Integer) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send an Integer as a message
- send(String, Long, Handler<Message<Long>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Long as a message
- send(String, Long) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Long as a message
- send(String, Float, Handler<Message<Float>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Float as a message
- send(String, Float) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Float as a message
- send(String, Double, Handler<Message<Double>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Double as a message
- send(String, Double) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Double as a message
- send(String, Boolean, Handler<Message<Boolean>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Boolean as a message
- send(String, Boolean) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Boolean as a message
- send(String, Short, Handler<Message<Short>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Short as a message
- send(String, Short) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Short as a message
- send(String, Character, Handler<Message<Character>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Character as a message
- send(String, Character) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Character as a message
- send(String, Byte, Handler<Message<Byte>>) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Byte as a message
- send(String, Byte) - Method in interface org.vertx.java.core.eventbus.EventBus
-
Send a Byte as a message
- sendFile(String) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Tell the kernel to stream a file as specified by filename
directly
from disk to the outgoing connection, bypassing userspace altogether
(where supported by the underlying operating system.
- sendFile(String) - Method in class org.vertx.java.core.net.NetSocket
-
Tell the kernel to stream a file as specified by filename
directly from disk to the outgoing connection,
bypassing userspace altogether (where supported by the underlying operating system.
- sendHead() - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Forces the head of the request to be written before
HttpClientRequest.end()
is called on the request or any data is
written to it.
- ServerWebSocket - Class in org.vertx.java.core.http
-
Represents a server side WebSocket that is passed into a the websocketHandler of an
HttpServer
- ServerWebSocket(String, String, String) - Constructor for class org.vertx.java.core.http.ServerWebSocket
-
- setAcceptBacklog(int) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the accept backlog
- setAcceptBacklog(int) - Method in interface org.vertx.java.core.net.NetServer
-
Set the accept backlog
- setBossThreads(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the number of boss threads to use.
- setBossThreads(int) - Method in interface org.vertx.java.core.net.NetClient
-
Set the number of boss threads to use.
- setBuffer(int, Buffer) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the bytes at position pos
in the Buffer to the bytes represented by the Buffer b
.
- setByte(int, byte) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the byte
at position pos
in the Buffer to the value b
.
- setBytes(int, ByteBuffer) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the bytes at position pos
in the Buffer to the bytes represented by the ByteBuffer b
.
- setBytes(int, byte[]) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the bytes at position pos
in the Buffer to the bytes represented by the byte[] b
.
- setChunked(boolean) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
If chunked is true then the request will be set into HTTP chunked mode
- setChunked(boolean) - Method in class org.vertx.java.core.http.HttpServerResponse
-
If chunked
is true
, this response will use HTTP chunked encoding, and each call to write to the body
will correspond to a new HTTP chunk sent on the wire.
- setClientAuthRequired(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
Set required
to true if you want the server to request client authentication from any connecting clients.
- setClientAuthRequired(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
Set required
to true if you want the server to request client authentication from any connecting clients.
- setConnectTimeout(long) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the connect timeout in milliseconds.
- setConnectTimeout(long) - Method in interface org.vertx.java.core.net.NetClient
-
Set the connect timeout in milliseconds.
- setContainer(Container) - Method in class org.vertx.java.deploy.Verticle
-
Inject the container
- setDouble(int, double) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the double
at position pos
in the Buffer to the value d
.
- setFloat(int, float) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the float
at position pos
in the Buffer to the value f
.
- setHost(String) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the host that the client will attempt to connect to the server on to host
.
- setInt(int, int) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the int
at position pos
in the Buffer to the value i
.
- setKeepAlive(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
If keepAlive
is true
then, after the request has ended the connection will be returned to the pool
where it can be used by another request.
- setKeyStorePassword(String) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the password for the SSL key store.
- setKeyStorePassword(String) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the password for the SSL key store.
- setKeyStorePassword(String) - Method in interface org.vertx.java.core.net.NetClient
-
Set the password for the SSL key store.
- setKeyStorePassword(String) - Method in interface org.vertx.java.core.net.NetServer
-
Set the password for the SSL key store.
- setKeyStorePath(String) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the path to the SSL key store.
- setKeyStorePath(String) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the path to the SSL key store.
- setKeyStorePath(String) - Method in interface org.vertx.java.core.net.NetClient
-
Set the path to the SSL key store.
- setKeyStorePath(String) - Method in interface org.vertx.java.core.net.NetServer
-
Set the path to the SSL key store.
- setLong(int, long) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the long
at position pos
in the Buffer to the value l
.
- setMaxPoolSize(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the maximum pool size
- setOutput(Handler<Buffer>) - Method in class org.vertx.java.core.parsetools.RecordParser
-
- setPeriodic(long, Handler<Long>) - Method in class org.vertx.java.core.Vertx
-
Set a periodic timer to fire every delay
milliseconds, at which point handler
will be called with
the id of the timer.
- setPort(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the port that the client will attempt to connect to the server on to port
.
- setReceiveBufferSize(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP receive buffer size for connections created by this instance to size
in bytes.
- setReceiveBufferSize(int) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP receive buffer size for connections created by this instance to size
in bytes.
- setReceiveBufferSize(int) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP receive buffer size for connections created by this instance to size
in bytes.
- setReceiveBufferSize(int) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP receive buffer size for connections created by this instance to size
in bytes.
- setReconnectAttempts(int) - Method in interface org.vertx.java.core.net.NetClient
-
Set the number of reconnection attempts.
- setReconnectInterval(long) - Method in interface org.vertx.java.core.net.NetClient
-
Set the reconnect interval, in milliseconds
- setReuseAddress(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP reuseAddress setting for connections created by this instance to reuse
.
- setReuseAddress(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP reuseAddress setting for connections created by this instance to reuse
.
- setReuseAddress(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP reuseAddress setting for connections created by this instance to reuse
.
- setReuseAddress(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP reuseAddress setting for connections created by this instance to reuse
.
- setSendBufferSize(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP send buffer size for connections created by this instance to size
in bytes.
- setSendBufferSize(int) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP send buffer size for connections created by this instance to size
in bytes.
- setSendBufferSize(int) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP send buffer size for connections created by this instance to size
in bytes.
- setSendBufferSize(int) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP send buffer size for connections created by this instance to size
in bytes.
- setShort(int, short) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the short
at position pos
in the Buffer to the value s
.
- setSoLinger(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP soLinger setting for connections created by this instance to linger
.
- setSoLinger(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP soLinger setting for connections created by this instance to linger
.
- setSoLinger(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP soLinger setting for connections created by this instance to linger
.
- setSoLinger(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP soLinger setting for connections created by this instance to reuse
.
- setSSL(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
If ssl
is true
, this signifies that any connections will be SSL connections.
- setSSL(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
If ssl
is true
, this signifies that any connections will be SSL connections.
- setSSL(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
If ssl
is true
, this signifies that any connections will be SSL connections.
- setSSL(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
If ssl
is true
, this signifies that any connections will be SSL connections.
- setString(int, String) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the bytes at position pos
in the Buffer to the value of str
endoded in UTF-8.
- setString(int, String, String) - Method in class org.vertx.java.core.buffer.Buffer
-
Sets the bytes at position pos
in the Buffer to the value of str
encoded in encoding enc
.
- setTCPKeepAlive(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP keepAlive setting for connections created by this instance to keepAlive
.
- setTCPKeepAlive(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP keepAlive setting for connections created by this instance to keepAlive
.
- setTCPKeepAlive(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP keepAlive setting for connections created by this instance to keepAlive
.
- setTCPKeepAlive(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP keepAlive setting for connections created by this instance to keepAlive
.
- setTCPNoDelay(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
If
tcpNoDelay
is set to
true
then
Nagle's algorithm
will turned
off for the TCP connections created by this instance.
- setTCPNoDelay(boolean) - Method in interface org.vertx.java.core.http.HttpServer
-
If
tcpNoDelay
is set to
true
then
Nagle's algorithm
will turned
off for the TCP connections created by this instance.
- setTCPNoDelay(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
If
tcpNoDelay
is set to
true
then
Nagle's algorithm
will turned
off for the TCP connections created by this instance.
- setTCPNoDelay(boolean) - Method in interface org.vertx.java.core.net.NetServer
-
If
tcpNoDelay
is set to
true
then
Nagle's algorithm
will turned
off for the TCP connections created by this instance.
- setTimeout(long) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Set's the amount of time after which if a response is not received TimeoutException()
will be sent to the exception handler of this request.
- setTimer(long, Handler<Long>) - Method in class org.vertx.java.core.Vertx
-
Set a one-shot timer to fire after delay
milliseconds, at which point handler
will be called with
the id of the timer.
- setTrafficClass(int) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the TCP trafficClass setting for connections created by this instance to trafficClass
.
- setTrafficClass(int) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the TCP trafficClass setting for connections created by this instance to trafficClass
.
- setTrafficClass(int) - Method in interface org.vertx.java.core.net.NetClient
-
Set the TCP trafficClass setting for connections created by this instance to trafficClass
.
- setTrafficClass(int) - Method in interface org.vertx.java.core.net.NetServer
-
Set the TCP trafficClass setting for connections created by this instance to reuse
.
- setTrustAll(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
If you want an SSL client to trust *all* server certificates rather than match them
against those in its trust store, you can set this to true.
- setTrustAll(boolean) - Method in interface org.vertx.java.core.net.NetClient
-
If you want an SSL client to trust *all* server certificates rather than match them
against those in its trust store, you can set this to true.
- setTrustStorePassword(String) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the password for the SSL trust store.
- setTrustStorePassword(String) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the password for the SSL trust store.
- setTrustStorePassword(String) - Method in interface org.vertx.java.core.net.NetClient
-
Set the password for the SSL trust store.
- setTrustStorePassword(String) - Method in interface org.vertx.java.core.net.NetServer
-
Set the password for the SSL trust store.
- setTrustStorePath(String) - Method in interface org.vertx.java.core.http.HttpClient
-
Set the path to the SSL trust store.
- setTrustStorePath(String) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the path to the SSL trust store.
- setTrustStorePath(String) - Method in interface org.vertx.java.core.net.NetClient
-
Set the path to the SSL trust store.
- setTrustStorePath(String) - Method in interface org.vertx.java.core.net.NetServer
-
Set the path to the SSL trust store.
- setVerifyHost(boolean) - Method in interface org.vertx.java.core.http.HttpClient
-
If verifyHost
is true
, then the client will try to validate the remote server's certificate
hostname against the requested host.
- setVertx(Vertx) - Method in class org.vertx.java.deploy.Verticle
-
Inject vertx
- setWriteQueueMaxSize(int) - Method in class org.vertx.java.core.streams.Pump
-
Set the write queue max size to maxSize
- setWriteQueueMaxSize(int) - Method in interface org.vertx.java.core.streams.WriteStream
-
Set the maximum size of the write queue to maxSize
.
- Shareable - Interface in org.vertx.java.core.shareddata
-
Marker interface.
- SharedData - Class in org.vertx.java.core.shareddata
-
Sometimes it is desirable to share immutable data between different event loops, for example to implement a
cache of data.
- SharedData() - Constructor for class org.vertx.java.core.shareddata.SharedData
-
- sharedData() - Method in class org.vertx.java.core.Vertx
-
The shared data object
- SimpleHandler - Class in org.vertx.java.core
-
This class can be used for simple handlers which don't receive any value.
- SimpleHandler() - Constructor for class org.vertx.java.core.SimpleHandler
-
- size - Variable in class org.vertx.java.core.file.FileProps
-
The size of the file, in bytes
- size() - Method in class org.vertx.java.core.json.JsonArray
-
- size() - Method in class org.vertx.java.core.json.JsonObject
-
- SockJSServer - Interface in org.vertx.java.core.sockjs
-
This is an implementation of the server side part of
SockJS
- SockJSSocket - Class in org.vertx.java.core.sockjs
-
You interact with SockJS clients through instances of SockJS socket.
- SockJSSocket(Vertx) - Constructor for class org.vertx.java.core.sockjs.SockJSSocket
-
- start() - Method in class org.vertx.java.core.streams.Pump
-
Start the Pump.
- start() - Method in class org.vertx.java.deploy.Verticle
-
Vert.x calls the start method when the verticle is deployed
- statusCode - Variable in class org.vertx.java.core.http.HttpClientResponse
-
The HTTP status code of the response
- statusCode - Variable in class org.vertx.java.core.http.HttpServerResponse
-
The HTTP status code of the response.
- statusMessage - Variable in class org.vertx.java.core.http.HttpClientResponse
-
The HTTP status message of the response
- statusMessage - Variable in class org.vertx.java.core.http.HttpServerResponse
-
The HTTP status message of the response.
- stop() - Method in class org.vertx.java.core.streams.Pump
-
Stop the Pump.
- stop() - Method in class org.vertx.java.core.Vertx
-
Stop the eventbus and any resource managed by the eventbus.
- stop() - Method in class org.vertx.java.deploy.Verticle
-
Vert.x calls the stop method when the verticle is undeployed.
- succeeded() - Method in class org.vertx.java.core.AsyncResult
-
Did it succeeed?
- symlink(String, String, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Create a symbolic link on the file system from link
to existing
, asynchronously.
- symlinkSync(String, String) - Method in interface org.vertx.java.core.file.FileSystem
-
- warn(Object) - Method in class org.vertx.java.core.logging.Logger
-
- warn(Object, Throwable) - Method in class org.vertx.java.core.logging.Logger
-
- WebSocket - Class in org.vertx.java.core.http
-
Represents an HTML 5 Websocket
- WebSocket(String, String) - Constructor for class org.vertx.java.core.http.WebSocket
-
- websocketHandler(Handler<ServerWebSocket>) - Method in interface org.vertx.java.core.http.HttpServer
-
Set the websocket handler for the server to wsHandler
.
- websocketHandler() - Method in interface org.vertx.java.core.http.HttpServer
-
Get the websocket handler
- WebSocketVersion - Enum in org.vertx.java.core.http
-
Represents the version of the WebSockets specification
- write(Buffer, int, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.AsyncFile
-
Write a
Buffer
to the file at position
position
in the file, asynchronously.
- write(Buffer) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a
Buffer
to the request body.
- write(String) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a String
to the request body, encoded in UTF-8.
- write(String, String) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a String
to the request body, encoded using the encoding enc
.
- write(Buffer, Handler<Void>) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a
Buffer
to the request body.
- write(String, Handler<Void>) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a String
to the request body, encoded in UTF-8.
- write(String, String, Handler<Void>) - Method in interface org.vertx.java.core.http.HttpClientRequest
-
Write a String
to the request body, encoded with encoding enc
.
- write(Buffer) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a
Buffer
to the response body.
- write(String, String) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a String
to the response body, encoded using the encoding enc
.
- write(String) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a String
to the response body, encoded in UTF-8.
- write(Buffer, Handler<Void>) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a
Buffer
to the response body.
- write(String, String, Handler<Void>) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a String
to the response body, encoded with encoding enc
.
- write(String, Handler<Void>) - Method in class org.vertx.java.core.http.HttpServerResponse
-
Write a String
to the response body, encoded in UTF-8.
- write(Buffer) - Method in class org.vertx.java.core.net.NetSocket
-
Write a
Buffer
to the request body.
- write(String) - Method in class org.vertx.java.core.net.NetSocket
-
Write a String
to the connection, encoded in UTF-8.
- write(String, String) - Method in class org.vertx.java.core.net.NetSocket
-
Write a String
to the connection, encoded using the encoding enc
.
- write(Buffer, Handler<Void>) - Method in class org.vertx.java.core.net.NetSocket
-
Write a
Buffer
to the connection.
- write(String, Handler<Void>) - Method in class org.vertx.java.core.net.NetSocket
-
Write a String
to the connection, encoded in UTF-8.
- write(String, String, Handler<Void>) - Method in class org.vertx.java.core.net.NetSocket
-
Write a String
to the connection, encoded with encoding enc
.
- writeBinaryFrame(Buffer) - Method in class org.vertx.java.core.http.WebSocket
-
Write data
to the websocket as a binary frame
- writeBuffer(Buffer) - Method in class org.vertx.java.core.net.NetSocket
-
Write some data to the stream.
- writeBuffer(Buffer) - Method in interface org.vertx.java.core.streams.WriteStream
-
Write some data to the stream.
- writeFile(String, Buffer, AsyncResultHandler<Void>) - Method in interface org.vertx.java.core.file.FileSystem
-
Creates the file, and writes the specified Buffer data
to the file represented by the path path
,
asynchronously.
- writeFileSync(String, Buffer) - Method in interface org.vertx.java.core.file.FileSystem
-
- writeHandlerID - Variable in class org.vertx.java.core.net.NetSocket
-
When a NetSocket
is created it automatically registers an event handler with the event bus, the ID of that
handler is given by writeHandlerID
.
- writeHandlerID - Variable in class org.vertx.java.core.sockjs.SockJSSocket
-
When a SockJSSocket
is created it automatically registers an event handler with the event bus, the ID of that
handler is given by writeHandlerID
.
- writeQueueFull() - Method in interface org.vertx.java.core.streams.WriteStream
-
- WriteStream - Interface in org.vertx.java.core.streams
-
Represents a stream of data that can be written to
- writeTextFrame(String) - Method in class org.vertx.java.core.http.WebSocket
-
Write str
to the websocket as a text frame