@vertx/core
Advanced tools
Comparing version 3.7.1 to 3.8.0
@@ -17,2 +17,8 @@ /* | ||
/** | ||
* Configures the engine to require/request client authentication. | ||
* <p/> | ||
* Created by manishk on 10/2/2015. | ||
* | ||
*/ | ||
export enum ClientAuth { | ||
@@ -24,2 +30,8 @@ NONE, | ||
/** | ||
* Represents the possible response codes a server may send after receiving a | ||
* query. A response code of 0 indicates no error. | ||
* | ||
* | ||
*/ | ||
export enum DnsResponseCode { | ||
@@ -43,2 +55,7 @@ NOERROR, | ||
/** | ||
* Represents an HTTP method | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export enum HttpMethod { | ||
@@ -57,2 +74,7 @@ OPTIONS, | ||
/** | ||
* Represents the version of the HTTP protocol. | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export enum HttpVersion { | ||
@@ -64,2 +86,7 @@ HTTP_1_0, | ||
/** | ||
* The possibles types of {@link JsonEvent} emitted by the {@link JsonParser}. | ||
* @author <a href="mailto:julien@julienviet.com">Julien Viet</a> | ||
* | ||
*/ | ||
export enum JsonEventType { | ||
@@ -73,2 +100,7 @@ START_OBJECT, | ||
/** | ||
* The type of a TCP proxy server. | ||
* @author <a href="http://oss.lehmann.cx/">Alexander Lehmann</a> | ||
* | ||
*/ | ||
export enum ProxyType { | ||
@@ -80,2 +112,7 @@ HTTP, | ||
/** | ||
* Represents the type of reply failure | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export enum ReplyFailure { | ||
@@ -87,2 +124,7 @@ TIMEOUT, | ||
/** | ||
* Represents the WebSocket version | ||
* @author <a href="http://tfox.org">Tim Fox</a> | ||
* | ||
*/ | ||
export enum WebsocketVersion { | ||
@@ -89,0 +131,0 @@ V00, |
@@ -48,2 +48,4 @@ /* | ||
JsonParser: Java.type('io.vertx.core.parsetools.JsonParser'), | ||
JsonPointer: Java.type('io.vertx.core.json.pointer.JsonPointer'), | ||
JsonPointerIterator: Java.type('io.vertx.core.json.pointer.JsonPointerIterator'), | ||
LocalMap: Java.type('io.vertx.core.shareddata.LocalMap'), | ||
@@ -61,2 +63,3 @@ Lock: Java.type('io.vertx.core.shareddata.Lock'), | ||
Pipe: Java.type('io.vertx.core.streams.Pipe'), | ||
Promise: Java.type('io.vertx.core.Promise'), | ||
Pump: Java.type('io.vertx.core.streams.Pump'), | ||
@@ -63,0 +66,0 @@ ReadStream: Java.type('io.vertx.core.streams.ReadStream'), |
{ | ||
"description" : "Generated Eclipse Vert.x bindings for 'vertx-core'", | ||
"version" : "3.7.1", | ||
"version" : "3.8.0", | ||
"license" : "Apache Software License 2.0", | ||
@@ -8,3 +8,3 @@ "maven" : { | ||
"artifactId" : "vertx-core", | ||
"version" : "3.7.1" | ||
"version" : "3.8.0" | ||
}, | ||
@@ -11,0 +11,0 @@ "name" : "@vertx/core", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
743954
18605