package me.xcoding.opencdc.binlog.event.loadInfile; import me.xcoding.opencdc.binlog.EventContext; import me.xcoding.opencdc.binlog.event.Event; import me.xcoding.opencdc.binlog.parser.EventParser; import me.xcoding.opencdc.mysql.protocol.BasicReader; /** * * @author Teny ZH(zh.Teny.1@gmail.com) * @see http://dev.mysql.com/doc/internals/en/create-file-event.html * */ // 0x08 public class CreateFileEvent extends Event implements EventParser { int fileId; String blockData; @Override public Event parser(EventContext context, BasicReader reader) { // TODO Auto-generated method stub return null; } }