Package mariadbcdc
Class RowChangedData
- java.lang.Object
-
- mariadbcdc.RowChangedData
-
public class RowChangedData extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description RowChangedData(ChangeType type, java.lang.String database, java.lang.String table, long timestamp, DataRow dataRow, BinlogPosition binLogPosition)RowChangedData(ChangeType type, java.lang.String database, java.lang.String table, long timestamp, DataRow dataRow, DataRow dataRowBeforeUpdate, BinlogPosition binLogPosition)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BinlogPositiongetBinLogPosition()java.lang.StringgetDatabase()DataRowgetDataRow()DataRowgetDataRowBeforeUpdate()java.lang.StringgetTable()longgetTimestamp()ChangeTypegetType()
-
-
-
Constructor Detail
-
RowChangedData
public RowChangedData(ChangeType type, java.lang.String database, java.lang.String table, long timestamp, DataRow dataRow, BinlogPosition binLogPosition)
-
RowChangedData
public RowChangedData(ChangeType type, java.lang.String database, java.lang.String table, long timestamp, DataRow dataRow, DataRow dataRowBeforeUpdate, BinlogPosition binLogPosition)
-
-
Method Detail
-
getType
public ChangeType getType()
-
getDatabase
public java.lang.String getDatabase()
-
getTable
public java.lang.String getTable()
-
getTimestamp
public long getTimestamp()
-
getDataRow
public DataRow getDataRow()
-
getDataRowBeforeUpdate
public DataRow getDataRowBeforeUpdate()
-
getBinLogPosition
public BinlogPosition getBinLogPosition()
-
-