Skip to content
This repository was archived by the owner on Feb 22, 2022. It is now read-only.

Commit 07ce2da

Browse files
committed
发布3.7.0
1 parent 5ffe8f7 commit 07ce2da

File tree

6 files changed

+154
-8
lines changed

6 files changed

+154
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build Status](https://travis-ci.org/vert-x-cn/vertx-lang-jphp.svg?branch=3.6)](https://travis-ci.org/vert-x-cn/vertx-lang-jphp)
22
[![vertx-lang-jphp](https://img.shields.io/badge/vert.x3-jphp-blue.svg)](https://github.com/vert-x-cn/vertx-lang-jphp)
3-
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/snapshots/https/oss.sonatype.org/tk.okou/vertx-lang-jphp.svg)](https://oss.sonatype.org/#nexus-search;gav~tk.okou~vertx-lang-jphp~3.7.0-SNAPSHOT~~)
3+
[![Sonatype Nexus (Snapshots)](https://img.shields.io/nexus/snapshots/https/oss.sonatype.org/tk.okou/vertx-lang-jphp.svg)](https://oss.sonatype.org/#nexus-search;gav~tk.okou~vertx-lang-jphp~3.7.0~~)
44
[![license](https://img.shields.io/github/license/vert-x-cn/vertx-lang-jphp.svg)](https://www.apache.org/licenses/LICENSE-2.0)
55

66

@@ -16,14 +16,14 @@ Maven配置 / Maven pom.xml:
1616
<dependency>
1717
<groupId>tk.okou</groupId>
1818
<artifactId>vertx-lang-jphp</artifactId>
19-
<version>3.7.0-SNAPSHOT</version>
19+
<version>3.7.0</version>
2020
</dependency>
2121
```
2222

2323
Gradle配置 / Gradle build.gradle file:
2424
```groovy
2525
dependencies {
26-
compile 'tk.okou:vertx-lang-jphp:3.7.0-SNAPSHOT'
26+
compile 'tk.okou:vertx-lang-jphp:3.7.0'
2727
}
2828
```
2929

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>tk.okou</groupId>
1313
<artifactId>vertx-lang-jphp-parent</artifactId>
14-
<version>3.7.0-SNAPSHOT</version>
14+
<version>3.7.0</version>
1515
<packaging>pom</packaging>
1616

1717
<name>Vert.x JPHP Language Support</name>
@@ -55,7 +55,7 @@
5555
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5656
<junit.version>4.12</junit.version>
5757
<kotlin.version>1.2.50</kotlin.version>
58-
<stack.version>3.7.0-SNAPSHOT</stack.version>
58+
<stack.version>3.7.0</stack.version>
5959
<totalPHP>E:/okou/test/php/src</totalPHP>
6060
<generated-dir>${project.basedir}/src/main/generated/</generated-dir>
6161
<maven.compiler.source>1.8</maven.compiler.source>

vertx-lang-jphp-compiler/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>vertx-lang-jphp-parent</artifactId>
77
<groupId>tk.okou</groupId>
8-
<version>3.7.0-SNAPSHOT</version>
8+
<version>3.7.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

vertx-lang-jphp-gen/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>tk.okou</groupId>
77
<artifactId>vertx-lang-jphp-parent</artifactId>
8-
<version>3.7.0-SNAPSHOT</version>
8+
<version>3.7.0</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

vertx-lang-jphp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>tk.okou</groupId>
77
<!--<groupId>io.vertx</groupId>-->
88
<artifactId>vertx-lang-jphp-parent</artifactId>
9-
<version>3.7.0-SNAPSHOT</version>
9+
<version>3.7.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<modelVersion>4.0.0</modelVersion>

vertx-lang-jphp/src/main/asciidoc/dataobjects.adoc

+146
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,12 @@ Set whether SO_linger keep alive is enabled
236236
|[[ssl]]`@ssl`|`Boolean`|+++
237237
Set whether SSL/TLS is enabled
238238
+++
239+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
240+
Set the SSL handshake timeout, default time unit is seconds.
241+
+++
242+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
243+
Set the SSL handshake timeout unit. If not specified, default is seconds.
244+
+++
239245
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
240246
Enable the <code>TCP_CORK</code> option - only with linux native transport.
241247
+++
@@ -814,6 +820,12 @@ Set whether SO_linger keep alive is enabled
814820
|[[ssl]]`@ssl`|`Boolean`|+++
815821
Set whether SSL/TLS is enabled
816822
+++
823+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
824+
Set the SSL handshake timeout, default time unit is seconds.
825+
+++
826+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
827+
Set the SSL handshake timeout unit. If not specified, default is seconds.
828+
+++
817829
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
818830
Enable the <code>TCP_CORK</code> option - only with linux native transport.
819831
+++
@@ -1217,6 +1229,12 @@ Set whether SO_linger keep alive is enabled
12171229
|[[ssl]]`@ssl`|`Boolean`|+++
12181230
Set whether SSL/TLS is enabled
12191231
+++
1232+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
1233+
Set the SSL handshake timeout, default time unit is seconds.
1234+
+++
1235+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
1236+
Set the SSL handshake timeout unit. If not specified, default is seconds.
1237+
+++
12201238
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
12211239
Enable the <code>TCP_CORK</code> option - only with linux native transport.
12221240
+++
@@ -2006,6 +2024,12 @@ Set whether SO_linger keep alive is enabled
20062024
|[[ssl]]`@ssl`|`Boolean`|+++
20072025
Set whether SSL/TLS is enabled
20082026
+++
2027+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
2028+
Set the SSL handshake timeout, default time unit is seconds.
2029+
+++
2030+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
2031+
Set the SSL handshake timeout unit. If not specified, default is seconds.
2032+
+++
20092033
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
20102034
Enable the <code>TCP_CORK</code> option - only with linux native transport.
20112035
+++
@@ -2525,6 +2549,12 @@ Set whether SO_linger keep alive is enabled
25252549
|[[ssl]]`@ssl`|`Boolean`|+++
25262550
Set whether SSL/TLS is enabled
25272551
+++
2552+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
2553+
Set the SSL handshake timeout, default time unit is seconds.
2554+
+++
2555+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
2556+
Set the SSL handshake timeout unit. If not specified, default is seconds.
2557+
+++
25282558
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
25292559
Enable the <code>TCP_CORK</code> option - only with linux native transport.
25302560
+++
@@ -2780,6 +2810,12 @@ Set whether SO_linger keep alive is enabled
27802810
|[[ssl]]`@ssl`|`Boolean`|+++
27812811
Set whether SSL/TLS is enabled
27822812
+++
2813+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
2814+
Set the SSL handshake timeout, default time unit is seconds.
2815+
+++
2816+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
2817+
Set the SSL handshake timeout unit. If not specified, default is seconds.
2818+
+++
27832819
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
27842820
Enable the <code>TCP_CORK</code> option - only with linux native transport.
27852821
+++
@@ -3007,6 +3043,12 @@ Configure the SockJS path, the default value is <code>/term/*</code>.
30073043
|[[ssl]]`@ssl`|`Boolean`|+++
30083044
Set whether SSL/TLS is enabled
30093045
+++
3046+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
3047+
Set the SSL handshake timeout, default time unit is seconds.
3048+
+++
3049+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
3050+
Set the SSL handshake timeout unit. If not specified, default is seconds.
3051+
+++
30103052
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
30113053
Enable the <code>TCP_CORK</code> option - only with linux native transport.
30123054
+++
@@ -4111,6 +4153,12 @@ Set whether SO_linger keep alive is enabled
41114153
|[[ssl]]`@ssl`|`Boolean`|+++
41124154
Set whether SSL/TLS is enabled
41134155
+++
4156+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
4157+
Set the SSL handshake timeout, default time unit is seconds.
4158+
+++
4159+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
4160+
Set the SSL handshake timeout unit. If not specified, default is seconds.
4161+
+++
41144162
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
41154163
Enable the <code>TCP_CORK</code> option - only with linux native transport.
41164164
+++
@@ -4258,6 +4306,12 @@ Set whether SO_linger keep alive is enabled
42584306
|[[ssl]]`@ssl`|`Boolean`|+++
42594307
Set whether SSL/TLS is enabled
42604308
+++
4309+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
4310+
Set the SSL handshake timeout, default time unit is seconds.
4311+
+++
4312+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
4313+
Set the SSL handshake timeout unit. If not specified, default is seconds.
4314+
+++
42614315
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
42624316
Enable the <code>TCP_CORK</code> option - only with linux native transport.
42634317
+++
@@ -4416,6 +4470,12 @@ Set whether SO_linger keep alive is enabled
44164470
|[[ssl]]`@ssl`|`Boolean`|+++
44174471
Set whether SSL/TLS is enabled
44184472
+++
4473+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
4474+
Set the SSL handshake timeout, default time unit is seconds.
4475+
+++
4476+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
4477+
Set the SSL handshake timeout unit. If not specified, default is seconds.
4478+
+++
44194479
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
44204480
Enable the <code>TCP_CORK</code> option - only with linux native transport.
44214481
+++
@@ -4539,6 +4599,12 @@ Set whether SO_linger keep alive is enabled
45394599
|[[ssl]]`@ssl`|`Boolean`|+++
45404600
Set whether SSL/TLS is enabled
45414601
+++
4602+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
4603+
Set the SSL handshake timeout, default time unit is seconds.
4604+
+++
4605+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
4606+
Set the SSL handshake timeout unit. If not specified, default is seconds.
4607+
+++
45424608
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
45434609
Enable the <code>TCP_CORK</code> option - only with linux native transport.
45444610
+++
@@ -4962,6 +5028,12 @@ Set whether SO_linger keep alive is enabled
49625028
|[[ssl]]`@ssl`|`Boolean`|+++
49635029
Set whether SSL/TLS is enabled
49645030
+++
5031+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
5032+
Set the SSL handshake timeout, default time unit is seconds.
5033+
+++
5034+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
5035+
Set the SSL handshake timeout unit. If not specified, default is seconds.
5036+
+++
49655037
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
49665038
Enable the <code>TCP_CORK</code> option - only with linux native transport.
49675039
+++
@@ -6035,6 +6107,12 @@ Set whether SO_linger keep alive is enabled
60356107
|[[ssl]]`@ssl`|`Boolean`|+++
60366108
Set whether SSL/TLS is enabled
60376109
+++
6110+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
6111+
Set the SSL handshake timeout, default time unit is seconds.
6112+
+++
6113+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
6114+
Set the SSL handshake timeout unit. If not specified, default is seconds.
6115+
+++
60386116
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
60396117
Enable the <code>TCP_CORK</code> option - only with linux native transport.
60406118
+++
@@ -6120,6 +6198,9 @@ Replace the current list of reporters with a new one.
61206198
[frame="topbot"]
61216199
|===
61226200
^|Name | Type ^| Description
6201+
|[[headers]]`@headers`|`String`|+++
6202+
Add a request header.
6203+
+++
61236204
|[[host]]`@host`|`String`|+++
61246205
Set the host name to be used by the client request.
61256206
+++
@@ -6874,6 +6955,12 @@ Set whether SO_linger keep alive is enabled
68746955
|[[ssl]]`@ssl`|`Boolean`|+++
68756956
Set whether SSL/TLS is enabled
68766957
+++
6958+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
6959+
Set the SSL handshake timeout, default time unit is seconds.
6960+
+++
6961+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
6962+
Set the SSL handshake timeout unit. If not specified, default is seconds.
6963+
+++
68776964
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
68786965
Enable the <code>TCP_CORK</code> option - only with linux native transport.
68796966
+++
@@ -7038,6 +7125,12 @@ Set whether SO_linger keep alive is enabled
70387125
|[[ssl]]`@ssl`|`Boolean`|+++
70397126
Set whether SSL/TLS is enabled
70407127
+++
7128+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
7129+
Set the SSL handshake timeout, default time unit is seconds.
7130+
+++
7131+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
7132+
Set the SSL handshake timeout unit. If not specified, default is seconds.
7133+
+++
70417134
|[[supportedVersions]]`@supportedVersions`|`Array of String`|+++
70427135
Sets the STOMP protocol versions supported by the server. Versions must be given in the decreasing order.
70437136
+++
@@ -7183,6 +7276,12 @@ Set whether SO_linger keep alive is enabled
71837276
|[[ssl]]`@ssl`|`Boolean`|+++
71847277
Set whether SSL/TLS is enabled
71857278
+++
7279+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
7280+
Set the SSL handshake timeout, default time unit is seconds.
7281+
+++
7282+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
7283+
Set the SSL handshake timeout unit. If not specified, default is seconds.
7284+
+++
71867285
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
71877286
Enable the <code>TCP_CORK</code> option - only with linux native transport.
71887287
+++
@@ -7317,6 +7416,12 @@ Set whether SO_linger keep alive is enabled
73177416
|[[ssl]]`@ssl`|`Boolean`|+++
73187417
Set whether SSL/TLS is enabled
73197418
+++
7419+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
7420+
Set the SSL handshake timeout, default time unit is seconds.
7421+
+++
7422+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
7423+
Set the SSL handshake timeout unit. If not specified, default is seconds.
7424+
+++
73207425
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
73217426
Enable the <code>TCP_CORK</code> option - only with linux native transport.
73227427
+++
@@ -8014,6 +8119,12 @@ Set whether SO_linger keep alive is enabled
80148119
|[[ssl]]`@ssl`|`Boolean`|+++
80158120
Set whether SSL/TLS is enabled
80168121
+++
8122+
|[[sslHandshakeTimeout]]`@sslHandshakeTimeout`|`Number (long)`|+++
8123+
Set the SSL handshake timeout, default time unit is seconds.
8124+
+++
8125+
|[[sslHandshakeTimeoutUnit]]`@sslHandshakeTimeoutUnit`|`link:enums.html#TimeUnit[TimeUnit]`|+++
8126+
Set the SSL handshake timeout unit. If not specified, default is seconds.
8127+
+++
80178128
|[[tcpCork]]`@tcpCork`|`Boolean`|+++
80188129
Enable the <code>TCP_CORK</code> option - only with linux native transport.
80198130
+++
@@ -8078,3 +8189,38 @@ Set whether the <code>server_no_context_takeover</code> parameter of the WebSock
80788189
+++
80798190
|===
80808191

8192+
[[WebSocketConnectOptions]]
8193+
== WebSocketConnectOptions
8194+
8195+
++++
8196+
Options describing how an link connect a link.
8197+
++++
8198+
'''
8199+
8200+
[cols=">25%,25%,50%"]
8201+
[frame="topbot"]
8202+
|===
8203+
^|Name | Type ^| Description
8204+
|[[headers]]`@headers`|`String`|+++
8205+
Add a request header.
8206+
+++
8207+
|[[host]]`@host`|`String`|+++
8208+
Set the host name to be used by the client request.
8209+
+++
8210+
|[[port]]`@port`|`Number (int)`|+++
8211+
Set the port to be used by the client request.
8212+
+++
8213+
|[[ssl]]`@ssl`|`Boolean`|+++
8214+
Set whether SSL/TLS is enabled
8215+
+++
8216+
|[[subProtocols]]`@subProtocols`|`Array of String`|+++
8217+
Set the WebSocket sub protocols to use.
8218+
+++
8219+
|[[uri]]`@uri`|`String`|+++
8220+
Set the request relative URI
8221+
+++
8222+
|[[version]]`@version`|`link:enums.html#WebsocketVersion[WebsocketVersion]`|+++
8223+
Set the WebSocket version.
8224+
+++
8225+
|===
8226+

0 commit comments

Comments
 (0)