case class ParserConfiguration(maxMemoryBuffer: Long = 102400, maxDiskBuffer: Long = 10485760, allowEmptyFiles: Boolean = false) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- ParserConfiguration
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ParserConfiguration(maxMemoryBuffer: Long = 102400, maxDiskBuffer: Long = 10485760, allowEmptyFiles: Boolean = false)
- maxMemoryBuffer
The maximum size that a request body that should be buffered in memory.
- maxDiskBuffer
The maximum size that a request body should be buffered on disk.
- allowEmptyFiles
If empty file uploads are allowed (no matter if filename or file is empty)
Configuration for body parsers.
The maximum size that a request body that should be buffered in memory.
The maximum size that a request body should be buffered on disk.
If empty file uploads are allowed (no matter if filename or file is empty)