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

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

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

import com.github.shyiko.mysql.binlog.event.DeleteRowsEventData as JDeleteRowsEventData

import scala.jdk.CollectionConverters.*
object DeleteRowsEventData {
  def unapply(arg: JDeleteRowsEventData): Option[(Long, List[Array[Serializable]], Array[Int])] =
    Some((arg.getTableId, arg.getRows.asScala.toList, arg.getIncludedColumns.stream().toArray))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy