public interface ProviderPlatformStatisticsAdapter
Modifier and Type | Method and Description |
---|---|
void |
recordOperationAbort(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
Record the abortion of an operation invocation.
|
long |
recordOperationStart(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
Record the start of an operation invocation.
|
void |
recordOperationStop(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
Record the completion of an operation invocation.
|
void |
recordRequestAbort(WebServiceEndpointInfo endpoint, long statsToken)
Record a request abortion for the specified endpoint.
|
void |
recordRequestSize(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operation, long requestSize)
Record the size of a request for the specified operation of the specified endpoint.
|
long |
recordRequestStart(WebServiceEndpointInfo endpoint, long statsToken)
Record the start of a request for the specified endpoint.
|
void |
recordRequestStop(WebServiceEndpointInfo endpoint, long statsToken)
Record the completion of a request for the specified endpoint.
|
void |
recordResponseSize(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long responseSize)
Record the size of a response from the specified operation of the specified endpoint.
|
long recordRequestStart(WebServiceEndpointInfo endpoint, long statsToken) throws java.lang.Exception
endpoint
- The endpoint processing the request.statsToken
- The token for the request start event.java.lang.Exception
void recordRequestStop(WebServiceEndpointInfo endpoint, long statsToken)
endpoint
- The endpoint processing the request.statsToken
- The token for the request start event.void recordRequestAbort(WebServiceEndpointInfo endpoint, long statsToken)
endpoint
- The endpoint processing the request.statsToken
- The token for the request start event.void recordRequestSize(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operation, long requestSize)
endpoint
- The endpoint processing the request.operation
- The name of the operation being invoked.requestSize
- The size of the request message, measured in bytes.void recordResponseSize(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long responseSize)
endpoint
- The endpoint that produced the response.operationName
- The name of the operation being invoked.responseSize
- The size of the response message, measured in bytes.long recordOperationStart(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
endpoint
- The endpoint to which the operation belongs.operationName
- The name of the operation being invoked.statsToken
- The token for the operation start event.void recordOperationStop(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
endpoint
- The endpoint with which the operation is associated.operationName
- The name of the operation.statsToken
- The token for the operation start event.void recordOperationAbort(WebServiceEndpointInfo endpoint, javax.xml.namespace.QName operationName, long statsToken)
endpoint
- The endpoint to which the operation belongs.operationName
- The name of the operation being aborted.statsToken
- The token for the operation start event.