* in replication because the only important property of transaction numbers is that different
* transactions have different numbers (relative order does not matter).
*/
public void parse(XInputStream is, BinlogEventV4Header header, BinlogParserContext context)
throws IOException {
final XidEvent event = new XidEvent(header);
event.setXid(is.readLong(8));
context.getEventListener().onEvents(event);
}