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

com.potenciasoftware.rebel.executionWrapper.ResultMapper.scala Maven / Gradle / Ivy

The newest version!
package com.potenciasoftware.rebel.executionWrapper

/**
 * A mixin that provides a hook to map the strings that result from code
 * execution through an ExecutionWrapper.
 */
trait ResultMapper {
  def mapResult(result: String): String
}

object ResultMapper {

  trait Identity extends ResultMapper {
    override def mapResult(result: String): String = result
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy