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

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

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

/**
  * Strategy responsible for the filenames created by eel when writing out data.
  */
trait FilenameStrategy {
  def filename: String
}

object DefaultFilenameStrategy extends FilenameStrategy {
  override def filename: String = "eel_" + System.nanoTime()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy