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

io.lenses.jdbc4.row.LongRowId.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.lenses.jdbc4.row

import java.sql.RowId

class LongRowId(val id: Long) : RowId {
  override fun getBytes(): ByteArray = id.toString().toByteArray()
}

/**
 * A [RowId] that wraps the offset field returned in Kafka.
 */
class OffsetRowId(val id: Long) : RowId {
  override fun getBytes(): ByteArray = id.toString().toByteArray()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy