Interface ConnectionFactoryDecorator

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ConnectionFactoryDecorator
Decorator for connection factories.
Since:
3.2.0
Author:
Moritz Halbritter
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    io.r2dbc.spi.ConnectionFactory
    decorate(io.r2dbc.spi.ConnectionFactory delegate)
    Decorates the given ConnectionFactory.
  • Method Details

    • decorate

      io.r2dbc.spi.ConnectionFactory decorate(io.r2dbc.spi.ConnectionFactory delegate)
      Decorates the given ConnectionFactory.
      Parameters:
      delegate - the connection factory which should be decorated
      Returns:
      the decorated connection factory