Class ConcurrentLispSouthboundStats
- java.lang.Object
-
- org.opendaylight.lispflowmapping.southbound.ConcurrentLispSouthboundStats
-
public class ConcurrentLispSouthboundStats extends java.lang.Object
Object to hold statistics about LISP southbound events.- Author:
- Lorand Jakab
-
-
Field Summary
Fields Modifier and Type Field Description static int
MAX_LISP_TYPES
-
Constructor Summary
Constructors Constructor Description ConcurrentLispSouthboundStats()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getCacheHits()
long
getCacheMisses()
static int
getMaxMessageTypeValue()
long[]
getRx()
long
getRxUnknown()
long[]
getTx()
long
getTxErrors()
void
incrementCacheHits()
void
incrementCacheMisses()
void
incrementRx(int type)
void
incrementRxUnknown()
void
incrementTx(int type)
void
incrementTxErrors()
void
resetStats()
-
-
-
Method Detail
-
resetStats
public void resetStats()
-
getRx
public long[] getRx()
-
incrementRx
public void incrementRx(int type)
-
getTx
public long[] getTx()
-
incrementTx
public void incrementTx(int type)
-
getRxUnknown
public long getRxUnknown()
-
incrementRxUnknown
public void incrementRxUnknown()
-
getTxErrors
public long getTxErrors()
-
incrementTxErrors
public void incrementTxErrors()
-
getCacheHits
public long getCacheHits()
-
incrementCacheHits
public void incrementCacheHits()
-
getCacheMisses
public long getCacheMisses()
-
incrementCacheMisses
public void incrementCacheMisses()
-
getMaxMessageTypeValue
public static int getMaxMessageTypeValue()
-
-