-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for
Tcp|HttpServer
s with same configuration but different …
…bind addresses (#1760) Related to #1751 Co-authored-by: Simon Baslé <simon.basle@gmail.com> Co-authored-by: Violeta Georgieva <milesg78@gmail.com>
- Loading branch information
1 parent
901d6f3
commit dbc5f85
Showing
4 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...ava/reactor/netty/examples/documentation/http/server/address/MultiAddressApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2021 VMware, Inc. or its affiliates, All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package reactor.netty.examples.documentation.http.server.address; | ||
|
||
import reactor.core.publisher.Mono; | ||
import reactor.netty.DisposableServer; | ||
import reactor.netty.http.server.HttpServer; | ||
|
||
public class MultiAddressApplication { | ||
public static void main(String[] args) { | ||
HttpServer httpServer = HttpServer.create(); | ||
DisposableServer server1 = httpServer | ||
.host("localhost") //<1> | ||
.port(8080) //<2> | ||
.bindNow(); | ||
|
||
DisposableServer server2 = httpServer | ||
.host("0.0.0.0") //<3> | ||
.port(8081) //<4> | ||
.bindNow(); | ||
|
||
Mono.when(server1.onDispose(), server2.onDispose()) | ||
.block(); | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...java/reactor/netty/examples/documentation/tcp/server/address/MultiAddressApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2021 VMware, Inc. or its affiliates, All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package reactor.netty.examples.documentation.tcp.server.address; | ||
|
||
import reactor.core.publisher.Mono; | ||
import reactor.netty.DisposableServer; | ||
import reactor.netty.tcp.TcpServer; | ||
|
||
public class MultiAddressApplication { | ||
|
||
public static void main(String[] args) { | ||
TcpServer tcpServer = TcpServer.create(); | ||
DisposableServer server1 = tcpServer | ||
.host("localhost") //<1> | ||
.port(8080) //<2> | ||
.bindNow(); | ||
|
||
DisposableServer server2 = tcpServer | ||
.host("0.0.0.0") //<3> | ||
.port(8081) //<4> | ||
.bindNow(); | ||
|
||
Mono.when(server1.onDispose(), server2.onDispose()) | ||
.block(); | ||
} | ||
} |