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

spice.http.content.Content.scala Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
package spice.http.content

import spice.net.ContentType

trait Content {
  def length: Long
  def lastModified: Long
  def contentType: ContentType

  def withContentType(contentType: ContentType): Content
  def withLastModified(lastModified: Long): Content
  def asString: String
}

object Content extends SharedContentHelpers with ContentHelpers





© 2015 - 2025 Weber Informatics LLC | Privacy Policy