SpringR2dbcKueryClientBuilder
Builder for a KueryClient backed by Spring Data R2DBC.
Obtain an instance via SpringR2dbcKueryClient.builder. connectionFactory is required; everything else is optional.
Functions
Builds the KueryClient.
Sets the ConnectionFactory to execute SQL against. Required.
Sets custom converters used for both binding parameters and mapping rows, typically Spring Converters annotated with @WritingConverter / @ReadingConverter.
Sets whether to automatically generate a sqlId for metrics when sql { ... } is called without an explicit sqlId. When observationRegistry is specified, the default is true; otherwise, the default is false.
Sets the KueryClientFetchObservationConvention used to customize the observation name and tags. When not set, KueryClientFetchObservationConvention.default is used.
Sets the ObservationRegistry, enabling Micrometer Observation instrumentation (metrics/tracing) for each fetch.