From 2f7f51398c1bac2d89b2380c006a32d8dcd5109e Mon Sep 17 00:00:00 2001 From: country Date: Fri, 1 Oct 2021 21:29:39 +0900 Subject: [PATCH] Add anchors in reference documentation. See gh-655 --- src/main/asciidoc/reference/reactive-template.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/asciidoc/reference/reactive-template.adoc b/src/main/asciidoc/reference/reactive-template.adoc index 69ad94a0..0224d97c 100644 --- a/src/main/asciidoc/reference/reactive-template.adoc +++ b/src/main/asciidoc/reference/reactive-template.adoc @@ -3,6 +3,7 @@ This section covers basic information on the reactive programming support using Spring Vault. +[[vault.core.reactive.template.what-is-reactive]] == What is Reactive Programming? In plain terms reactive programming is about non-blocking applications that are @@ -14,6 +15,7 @@ to ensure producers don’t overwhelm consumers. For example in a pipeline of re components extending from the database to the HTTP response when the HTTP connection is too slow the data repository can also slow down or stop completely until network capacity frees up. +[[vault.core.reactive.template.client]] == Reactive Vault Client Spring Vault's reactive client support is built on top of <> and Spring's functional `WebClient` via Reactor Netty or Jetty, which feature both a fully non-blocking, event-driven HTTP client.