|
GridGain 2.0.3
Java API Specification |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@Apache20LicenseCompatible public interface GridTracingSpi
SPI provides pluggable tracing facility for GridGain. System runtime intercepts main implementation methods and notifies this SPI. Implementation of this SPI should provide any necessary processing of interception callbacks like collecting statistics, searching for patterns, passing further to external monitoring console, etc.
GridGain comes with one default implementation:
GridJxinsightTracingSpi - receives method call notifications from local grid
and informs JXInsight Tracer.
Documentation
Email Support
Online Forums
Issue Tracking
Author: 2005-2008 Copyright © GridGain Systems. All Rights Reserved. ver. 2.0.3
![]() |
![]() |
| Method Summary | |
|---|---|
void |
afterCall(Class<?> cls,
String methodName,
Object[] args,
Object res,
Throwable e)
This callback is called right after target method interception. |
void |
beforeCall(Class<?> cls,
String methodName,
Object[] args)
This callback is called right before target method interception. |
| Methods inherited from interface org.gridgain.grid.spi.GridSpi |
|---|
getNodeAttributes, onContextDestroyed, onContextInitialized, spiStart, spiStop |
| Method Detail |
|---|
void beforeCall(Class<?> cls,
String methodName,
Object[] args)
cls - Callee class.methodName - Callee method name.args - Callee method parameters.
void afterCall(Class<?> cls,
String methodName,
Object[] args,
@Nullable
Object res,
Throwable e)
cls - Callee class.methodName - Callee method name.args - Callee method parameters.res - Call result. Might be null if call
returned null or if exception happened.e - Exception thrown by given method call, if any.
|
GridGain 2.0.3
Java API Specification |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
|
GridGain - Grid Computing Made Simple, ver. 2.0.3.20052008
2005-2008 Copyright © GridGain Systems. All Rights Reserved. |
|