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

io.eels.component.hive.HiveOutputStream.scala Maven / Gradle / Ivy

The newest version!
package io.eels.component.hive

import io.eels.Row
import org.apache.hadoop.fs.Path

trait HiveOutputStream {
  def path: Path
  def records: Int
  def write(row: Row): Unit
  def close(): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy