FileHandle

play.doc.FileHandle
case class FileHandle(name: String, size: Long, is: InputStream, close: () => Unit)

Access to file data, provided to the handler when handleFile is called.

Value parameters

close

Used by the handler to close the file when the handler is finished.

is

A stream with the file data.

name

The name of the file.

size

The size of the file in bytes.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product