blob: 5038b2c3830db56aa23c11b0a18342f0fe4ba708 [file] [log] [blame]
/** Copyright 2015 TappingStone, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.prediction.controller
import io.prediction.core.BaseEngine
import scala.language.implicitConversions
/** If you intend to let PredictionIO create workflow and deploy serving
* automatically, you will need to implement an object that extends this trait
* and return an [[Engine]].
*
* @group Engine
*/
trait EngineFactory {
/** Creates an instance of an [[Engine]]. */
def apply(): BaseEngine[_, _, _, _]
/** Override this method to programmatically return engine parameters. */
def engineParams(key: String): EngineParams = EngineParams()
}
/** DEPRECATED. Use [[EngineFactory]] instead.
*
* @group Engine
*/
@deprecated("Use EngineFactory instead.", "0.9.2")
trait IEngineFactory extends EngineFactory