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

net.sansa_stack.rdf.spark.streaming.StreamWriter.scala Maven / Gradle / Ivy

package net.sansa_stack.rdf.spark.streaming

import org.apache.spark.streaming.dstream.DStream

/**
 * Abstract class that save the output from a given DStream.
 *
 * @author Gezim Sejdiu
 */
abstract class StreamWriter {
  /**
   * Save the output.
   *
   * @param stream a DStream of Strings
   */
  def save(stream: DStream[String]): Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy