Interface ServicePointListener

All Known Implementing Classes:
DwrSecurityListener, MetricsServicePointListener

public interface ServicePointListener
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterMethodInvocation(UUID invocationUuid, Method method, @Nullable Exception exception)
    Called after a 'remote service' method was executed (even when an exception was thrown).
    void
    beforeMethodInvocation(UUID invocationUuid, Method method, Object[] params)
    Called before a 'remote service' method is executed.
  • Method Details

    • beforeMethodInvocation

      void beforeMethodInvocation(UUID invocationUuid, Method method, Object[] params)
      Called before a 'remote service' method is executed.
      Parameters:
      invocationUuid - a unique id that identifies this method call
    • afterMethodInvocation

      void afterMethodInvocation(UUID invocationUuid, Method method, @Nullable @Nullable Exception exception)
      Called after a 'remote service' method was executed (even when an exception was thrown).