Class HandlerAdapter

java.lang.Object
org.springframework.kafka.listener.adapter.HandlerAdapter

public class HandlerAdapter extends Object
A wrapper for either an InvocableHandlerMethod or DelegatingInvocableHandler. All methods delegate to the underlying handler.
Author:
Gary Russell
  • Constructor Details

    • HandlerAdapter

      public HandlerAdapter(InvocableHandlerMethod invokerHandlerMethod)
      Construct an instance with the provided method.
      Parameters:
      invokerHandlerMethod - the method.
    • HandlerAdapter

      public HandlerAdapter(DelegatingInvocableHandler delegatingHandler)
      Construct an instance with the provided delegating handler.
      Parameters:
      delegatingHandler - the handler.
  • Method Details