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

com.lucidchart.piezo.WorkerSchedulerFactory.scala Maven / Gradle / Ivy

The newest version!
package com.lucidchart.piezo

import org.quartz.impl.StdSchedulerFactory
import java.util.Properties

/**
  */
class WorkerSchedulerFactory extends StdSchedulerFactory {
  var props: Properties = null

  override def initialize(props: Properties): Unit = {
    this.props = props
    super.initialize(props)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy