Class RecoveryDebug
- java.lang.Object
-
- org.apache.ignite.internal.processors.cache.persistence.RecoveryDebug
-
- All Implemented Interfaces:
AutoCloseable
public class RecoveryDebug extends Object implements AutoCloseable
-
-
Constructor Summary
Constructors Constructor Description RecoveryDebug(Object constId, long time)RecoveryDebug(Object constId, long time, @Nullable IgniteLogger log)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RecoveryDebugappend(Object st)RecoveryDebugappend(DataRecord rec, boolean unwrapKeyValue)RecoveryDebugappend(TxRecord rec)voidclose()Closes this debug insrance.
-
-
-
Constructor Detail
-
RecoveryDebug
public RecoveryDebug(Object constId, long time)
- Parameters:
constId- Consistent ID.
-
RecoveryDebug
public RecoveryDebug(Object constId, long time, @Nullable @Nullable IgniteLogger log)
- Parameters:
constId- Consistent ID.log- Logger.
-
-
Method Detail
-
append
public RecoveryDebug append(TxRecord rec)
- Parameters:
rec- TX record to append.- Returns:
thisfor convenience.
-
append
public RecoveryDebug append(DataRecord rec, boolean unwrapKeyValue)
- Parameters:
rec- Data record to append.unwrapKeyValue- unwrap key and value flag.- Returns:
thisfor convenience.
-
append
public RecoveryDebug append(Object st)
- Parameters:
st- Statement to append.- Returns:
thisfor convenience.
-
close
public void close()
Closes this debug insrance.- Specified by:
closein interfaceAutoCloseable
-
-