Package | Description |
---|---|
org.springframework.boot.actuate.endpoint |
Actuator endpoint infrastructure.
|
org.springframework.boot.actuate.endpoint.cache |
Caching support for actuator endpoints.
|
org.springframework.boot.actuate.endpoint.jmx |
JMX support for actuator endpoints.
|
org.springframework.boot.actuate.endpoint.web |
Web support for actuator endpoints.
|
Modifier and Type | Class and Description |
---|---|
class |
ReflectiveOperationInvoker
An
OperationInvoker that invokes an operation using reflection. |
Modifier and Type | Method and Description |
---|---|
OperationInvoker |
Operation.getInvoker()
Returns the
OperationInvoker that can be used to invoke this endpoint
operation. |
Constructor and Description |
---|
Operation(OperationType type,
OperationInvoker operationInvoker,
boolean blocking)
Creates a new
EndpointOperation for an operation of the given type . |
Modifier and Type | Class and Description |
---|---|
class |
CachingOperationInvoker
An
OperationInvoker that caches the response of an operation with a
configurable time to live. |
Constructor and Description |
---|
CachingOperationInvoker(OperationInvoker target,
long timeToLive)
Create a new instance with the target
OperationInvoker to use to compute
the response and the time to live for the cache. |
Constructor and Description |
---|
JmxEndpointOperation(OperationType type,
OperationInvoker invoker,
String operationName,
Class<?> outputType,
String description,
List<JmxEndpointOperationParameterInfo> parameters)
Creates a new
JmxEndpointOperation for an operation of the given
type . |
Constructor and Description |
---|
WebEndpointOperation(OperationType type,
OperationInvoker operationInvoker,
boolean blocking,
OperationRequestPredicate requestPredicate,
String id)
Creates a new
WebEndpointOperation with the given type . |
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.