All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.laserdisc.mysql.binlog.models.EventHeaderV4.scala Maven / Gradle / Ivy

The newest version!
package io.laserdisc.mysql.binlog.models

import com.github.shyiko.mysql.binlog.event.{EventHeaderV4 as JEventHeaderV4, EventType}

object EventHeaderV4 {
  def unapply(arg: JEventHeaderV4): Option[(EventType, Long, Long)] =
    Some((arg.getEventType, arg.getTimestamp, arg.getNextPosition))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy