Class AbstractObservationInterceptor

All Implemented Interfaces:
Interceptor<Message>, PhaseInterceptor<Message>
Direct Known Subclasses:
ObservationStartInterceptor, ObservationStopInterceptor

public abstract class AbstractObservationInterceptor extends AbstractObservationProvider implements PhaseInterceptor<Message>
  • Constructor Details

    • AbstractObservationInterceptor

      protected AbstractObservationInterceptor(String phase, io.micrometer.observation.ObservationRegistry observationRegistry)
  • Method Details

    • getAfter

      public Set<String> getAfter()
      Description copied from interface: PhaseInterceptor
      Returns a set containing the IDs of the interceptors that should be executed before this interceptor. This interceptor will be placed in the chain after the interceptors in the set.
      Specified by:
      getAfter in interface PhaseInterceptor<Message>
      Returns:
      the IDs of the interceptors
    • getBefore

      public Set<String> getBefore()
      Description copied from interface: PhaseInterceptor
      Returns a set containing the IDs of the interceptors that should be executed after this interceptor. This interceptor will be placed in the inteceptor chain before the interceptors in the set.
      Specified by:
      getBefore in interface PhaseInterceptor<Message>
      Returns:
      the ids of the interceptors
    • getId

      public String getId()
      Description copied from interface: PhaseInterceptor
      Returns the ID of this interceptor.
      Specified by:
      getId in interface PhaseInterceptor<Message>
      Returns:
      the ID
    • getPhase

      public String getPhase()
      Description copied from interface: PhaseInterceptor
      Returns the phase in which this interceptor is excecuted.
      Specified by:
      getPhase in interface PhaseInterceptor<Message>
      Returns:
      the phase
    • getAdditionalInterceptors

      public Collection<PhaseInterceptor<? extends Message>> getAdditionalInterceptors()
      Description copied from interface: PhaseInterceptor
      Returns a collection of Interceptors that should be added to the chain whenever this interceptor is added. May return null.
      Specified by:
      getAdditionalInterceptors in interface PhaseInterceptor<Message>
      Returns:
      the collection of interceptors
    • handleFault

      public void handleFault(Message message)
      Description copied from interface: Interceptor
      Called for all interceptors (in reverse order) on which handleMessage had been successfully invoked, when normal execution of the chain was aborted for some reason.
      Specified by:
      handleFault in interface Interceptor<Message>