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

com.fiftyonezero.eel.Sink.scala Maven / Gradle / Ivy

The newest version!
package com.fiftyonezero.eel

trait Sink {
  /**
    * Returns a new, one time use, writer for this sink.
    * This method can be called multiple times, and writers should not share state.
    */
  def writer: Writer
}

trait Writer {

  def write(row: Row)

  def close(): Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy