Class WriteRowsEventData
- java.lang.Object
-
- com.github.shyiko.mysql.binlog.event.WriteRowsEventData
-
- All Implemented Interfaces:
EventData
,Serializable
public class WriteRowsEventData extends Object implements EventData
- Author:
- Stanley Shyiko
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WriteRowsEventData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BitSet
getIncludedColumns()
List<Serializable[]>
getRows()
long
getTableId()
void
setIncludedColumns(BitSet includedColumns)
void
setRows(List<Serializable[]> rows)
void
setTableId(long tableId)
String
toString()
-
-
-
Method Detail
-
getTableId
public long getTableId()
-
setTableId
public void setTableId(long tableId)
-
getIncludedColumns
public BitSet getIncludedColumns()
-
setIncludedColumns
public void setIncludedColumns(BitSet includedColumns)
-
getRows
public List<Serializable[]> getRows()
-
setRows
public void setRows(List<Serializable[]> rows)
-
-