Interface SentinelFeatureStats
-
public interface SentinelFeatureStats
Statistics that are common to all features.
Sentinel core is responsible for updating these statistics as they correspond to the interaction between the feature and sentinel core.
Features define additional statistics by extending this interface.
The pattern used to name the counters and sample type statistics must follow the JAIN SLEE convention as defined by the SLEE 1.1 specification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
incrementFailedDuringExecution(long delta)
Incremented by sentinel core if the feature responds that it failed during executionvoid
incrementFailedToStart(long delta)
Incremented by sentinel core if the feature responds that it failed to start correctlyvoid
incrementIssuedWarning(long delta)
Incremented by sentinel core if the feature responds with a warningvoid
incrementStarted(long delta)
Incremented by sentinel core whenSentinelFeature.startFeature(Object, Object, javax.slee.ActivityContextInterface)
is calledvoid
incrementTimedOut(long delta)
Incremented by sentinel core if the feature timed out during execution
-
-
-
Method Detail
-
incrementStarted
void incrementStarted(long delta)
Incremented by sentinel core whenSentinelFeature.startFeature(Object, Object, javax.slee.ActivityContextInterface)
is called- Parameters:
delta
- the increment
-
incrementFailedToStart
void incrementFailedToStart(long delta)
Incremented by sentinel core if the feature responds that it failed to start correctly- Parameters:
delta
- the increment
-
incrementIssuedWarning
void incrementIssuedWarning(long delta)
Incremented by sentinel core if the feature responds with a warning- Parameters:
delta
- the increment
-
incrementFailedDuringExecution
void incrementFailedDuringExecution(long delta)
Incremented by sentinel core if the feature responds that it failed during execution- Parameters:
delta
- the increment
-
incrementTimedOut
void incrementTimedOut(long delta)
Incremented by sentinel core if the feature timed out during execution- Parameters:
delta
- the increment
-
-