Skip to content

Instantly share code, notes, and snippets.

View shatestest's full-sized avatar

Shyam shatestest

  • Steelwedge
  • India
View GitHub Profile
trait Processor {
def process(oraOptionDfConfig: DataFrameReader, sparkSession: SparkSession): Unit
}
class BMValsProcessor extends Processor {
def process(oraOptionDfConfig: DataFrameReader, sparkSession: SparkSession): Unit = {
println("in BMValsProcessor") ///actual business logic
}
}