Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[doc] Update Reactive Streams version in the reference documentation #2360

Merged
merged 1 commit into from Jul 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/asciidoc/getting-started.adoc
Expand Up @@ -22,7 +22,7 @@ backpressure-ready network engines for `HTTP` (including Websockets), `TCP`, and

It has transitive dependencies on:

* Reactive Streams v1.0.3
* Reactive Streams v1.0.4
* Reactor Core v3.x
* Netty v4.1.x

Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/http-client-conn-provider.adoc
Expand Up @@ -12,7 +12,7 @@ and further attempts are declined with an error.
[source,java,indent=0]
../../../reactor-netty-core/src/main/java/reactor/netty/ReactorNetty.java
----
include::./../../reactor-netty-core/src/main/java/reactor/netty/ReactorNetty.java[lines=117..159]
include::./../../reactor-netty-core/src/main/java/reactor/netty/ReactorNetty.java[lines=117..165]
----
====

Expand Down
6 changes: 3 additions & 3 deletions docs/asciidoc/http-client.adoc
Expand Up @@ -265,7 +265,7 @@ to extend the default `TCP` client configuration (add an option, bind address et
[source,java,indent=0]
.{examplesdir}/channeloptions/Application.java
----
include::{examplesdir}/channeloptions/Application.java[lines=18..46]
include::{examplesdir}/channeloptions/Application.java[lines=18..54]
----
<1> Configures the connection establishment timeout to 10 seconds.
<2> Enables TCP `keepalive`. This means that TCP starts sending `keepalive` probes when a connection is idle for some time.
Expand Down Expand Up @@ -615,7 +615,7 @@ To customize the default settings, you can configure `HttpClient` as follows:
[source,java,indent=0]
.{examplesdir}/channeloptions/Application.java
----
include::{examplesdir}/channeloptions/Application.java[lines=18..52]
include::{examplesdir}/channeloptions/Application.java[lines=18..54]
----
<1> Configures the connection establishment timeout to 10 seconds.
<2> Enables TCP `keepalive`. This means that TCP starts sending `keepalive` probes when a connection is idle for some time.
Expand Down Expand Up @@ -663,7 +663,7 @@ To customize the default settings, you can configure `HttpClient` as follows:
[source,java,indent=0]
.{examplesdir}/proxy/Application.java
----
include::{examplesdir}/proxy/Application.java[lines=18..41]
include::{examplesdir}/proxy/Application.java[lines=18..42]
----
<1> Configures the connection establishment timeout to 20 seconds.
====
Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/proxy.adoc
Expand Up @@ -17,7 +17,7 @@ The following example uses `ProxyProvider`:
[source,java,indent=0]
.{examplesdir}/proxy/Application.java
----
include::{examplesdir}/proxy/Application.java[lines=18..38]
include::{examplesdir}/proxy/Application.java[lines=18..42]
----
<1> Configures the connection establishment timeout to 20 seconds.
====
4 changes: 2 additions & 2 deletions docs/asciidoc/wire-logger.adoc
Expand Up @@ -11,7 +11,7 @@ and apply the following configuration:
[source,java,indent=0]
.{examplesdir}/wiretap/Application.java
----
include::{examplesdir}/wiretap/Application.java[lines=18..32]
include::{examplesdir}/wiretap/Application.java[lines=18..35]
----
<1> Enables the wire logging
====
Expand Down Expand Up @@ -56,7 +56,7 @@ When you need to change the default formatter you can configure it as follows:
[source,java,indent=0]
.{examplesdir}/wiretap/custom/Application.java
----
include::{examplesdir}/wiretap/custom/Application.java[lines=18..34]
include::{examplesdir}/wiretap/custom/Application.java[lines=18..38]
----
<1> Enables the wire logging,
{javadoc}/reactor/netty/transport/logging/AdvancedByteBufFormat.html#TEXTUAL[AdvancedByteBufFormat#TEXTUAL] is used for
Expand Down