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

spice.http.server.rest.ExchangeRequest.scala Maven / Gradle / Ivy

package spice.http.server.rest

import spice.http.HttpExchange

/**
 * Drop-in convenience class to wrap around an existing Request object and give a reference to the `HttpExchange`.
 */
trait ExchangeRequest {
  def exchange: HttpExchange

  def withExchange(exchange: HttpExchange): ExchangeRequest
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy