Class IgniteTxManager.TxDumpsThrottling
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.transactions.IgniteTxManager.TxDumpsThrottling
-
- Enclosing class:
- IgniteTxManager
public class IgniteTxManager.TxDumpsThrottling extends Object
This class is used to store information about transaction time dump throttling.
-
-
Constructor Summary
Constructors Constructor Description TxDumpsThrottling()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddump()Should be called when we dump transaction to log.voidskip()Should be called when we skip transaction which we could dump to log because of throttling.booleanskipCurrent()Returns should we skip dumping the transaction in current moment.
-
-
-
Method Detail
-
skipCurrent
public boolean skipCurrent()
Returns should we skip dumping the transaction in current moment.
-
dump
public void dump()
Should be called when we dump transaction to log.
-
skip
public void skip()
Should be called when we skip transaction which we could dump to log because of throttling.
-
-