接口 JmxOperationResponseMapper

所有已知实现类:
JacksonJmxOperationResponseMapper

public interface JmxOperationResponseMapper
Maps an operation's response to a JMX-friendly form.
从以下版本开始:
2.0.0
作者:
Stephane Nicoll
  • 方法概要

    修饰符和类型
    方法
    说明
    mapResponse(Object response)
    Map the operation's response so that it can be consumed by a JMX compliant client.
    mapResponseType(Class<?> responseType)
    Map the response type to its JMX compliant counterpart.
  • 方法详细资料

    • mapResponseType

      Class<?> mapResponseType(Class<?> responseType)
      Map the response type to its JMX compliant counterpart.
      参数:
      responseType - the operation's response type
      返回:
      the JMX compliant type
    • mapResponse

      Object mapResponse(Object response)
      Map the operation's response so that it can be consumed by a JMX compliant client.
      参数:
      response - the operation's response
      返回:
      the response, in a JMX compliant format