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

sttp.tapir.server.model.ValuedEndpointOutput.scala Maven / Gradle / Ivy

There is a newer version: 1.11.9
Show newest version
package sttp.tapir.server.model

import sttp.tapir.EndpointOutput

case class ValuedEndpointOutput[T](output: EndpointOutput[T], value: T) {
  def prepend[U](otherOutput: EndpointOutput[U], otherValue: U): ValuedEndpointOutput[(U, T)] =
    ValuedEndpointOutput(otherOutput.and(output), (otherValue, value))

  def append[U](otherOutput: EndpointOutput[U], otherValue: U): ValuedEndpointOutput[(T, U)] =
    ValuedEndpointOutput(output.and(otherOutput), (value, otherValue))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy