Interface Navigator<A>

Type Parameters:
A - generic attribute type
All Known Subinterfaces:
EqualityNavigator<A>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@API(status=STABLE) @FunctionalInterface public interface Navigator<A>
A Navigator chooses among the bindings of a routing tree. The act of traversing a routing tree by choosing a binding and following its associated route is called nested dispatch.
  • Method Summary

    Modifier and Type
    Method
    Description
    default com.google.common.reflect.TypeToken<A>
     
    navigate(org.springframework.http.client.ClientHttpResponse response, RoutingTree<A> tree)
     
  • Method Details