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

com.algorithmia.handler.AbstractAlgorithm.scala Maven / Gradle / Ivy

The newest version!
package com.algorithmia.handler

import scala.util.{Success, Try}

trait AbstractAlgorithm[I, O] {
  def apply(input: I): Try[O]

  def load(): Try[Unit] = Success(())
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy