Package | Description |
---|---|
io.vertx.core |
= Vert.x Core Manual
:toc: left
At the heart of Vert.x is a set of Java APIs that we call *Vert.x Core*
https://github.com/eclipse/vert.x[Repository].
|
io.vertx.core.datagram |
== Datagram sockets (UDP)
Using User Datagram Protocol (UDP) with Vert.x is a piece of cake.
|
io.vertx.core.eventbus |
== The Event Bus
:toc: left
The
event bus is the *nervous system* of Vert.x. |
io.vertx.core.http |
== Writing HTTP servers and clients
Vert.x allows you to easily write non blocking HTTP clients and servers.
|
io.vertx.core.net |
== Writing TCP servers and clients
Vert.x allows you to easily write non blocking TCP clients and servers.
|
io.vertx.core.spi.metrics |
Modifier and Type | Interface and Description |
---|---|
interface |
Vertx
The entry point into the Vert.x Core API.
|
interface |
WorkerExecutor
An executor for executing blocking code in Vert.x .
|
Modifier and Type | Interface and Description |
---|---|
interface |
DatagramSocket
A datagram socket can be used to send
DatagramPacket 's to remote datagram servers
and receive DatagramPacket s . |
Modifier and Type | Interface and Description |
---|---|
interface |
EventBus
A Vert.x event-bus is a light-weight distributed messaging system which allows different parts of your application,
or different applications and services to communicate with each in a loosely coupled way.
|
Modifier and Type | Interface and Description |
---|---|
interface |
HttpClient
An asynchronous HTTP client.
|
interface |
HttpServer
An HTTP and WebSockets server.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NetClient
A TCP client.
|
interface |
NetServer
Represents a TCP server
|
Modifier and Type | Interface and Description |
---|---|
interface |
MetricsProvider
|
interface |
VertxMetrics
The main Vert.x metrics SPI which Vert.x will use internally.
|
Copyright © 2018 Eclipse. All rights reserved.