object
Mime
extends AnyRef
Type Members
-
trait
Entity
extends HttpEntity with FormEntity
-
type
Headers
= Map[String, List[String]]
-
type
ListenerF
= (Long) ⇒ (Long) ⇒ Unit
-
-
type
MultipartBlock
[T]
= (Headers, InputStream) ⇒ T
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
implicit def
Request2ExtendedRequest
(r: Request): MimeRequestTerms
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
mime_stream_parser
[T]
(multipart_block: MultipartBlock[T])(content_type: String)(stm: InputStream): List[T]
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Mime module for multipart form posting. Note that when using an InputStream generator, chuncked encoding will be used with no Content-Length header and the stream will be closed after posting. It is therefore highly recommended that your generator always return a new stream instance, or a Request descriptor referencing it will fail after its first use.