Interface HttpServiceGroupConfigurer<CB>

Type Parameters:
CB - the type of client builder, i.e. RestClient or WebClient builder.
All Superinterfaces:
org.springframework.core.Ordered
All Known Subinterfaces:
RestClientHttpServiceGroupConfigurer
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 HttpServiceGroupConfigurer<CB> extends org.springframework.core.Ordered
Callback to configure the set of declared HttpServiceGroups.
Since:
7.0
Author:
Rossen Stoyanchev, Olga Maciaszek-Sharma
  • Method Details

    • configureGroups

      void configureGroups(HttpServiceGroupConfigurer.Groups<CB> groups)
      Configure the underlying infrastructure for all group.
    • getOrder

      default int getOrder()
      Determine the order of this configurer relative to others.

      By default, this is Ordered.LOWEST_PRECEDENCE.

      Specified by:
      getOrder in interface org.springframework.core.Ordered