Class

play.api.libs.Files

DefaultTemporaryFileCreator

Related Doc: package Files

Permalink

class DefaultTemporaryFileCreator extends TemporaryFileCreator

Creates temporary folders inside a single temporary folder. deleting all files on a successful application stop. Note that this will not clean up the filesystem if the application / JVM terminates abnormally.

Annotations
@Singleton()
Source
Files.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultTemporaryFileCreator
  2. TemporaryFileCreator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DefaultTemporaryFileCreator(applicationLifecycle: ApplicationLifecycle, temporaryFileReaper: TemporaryFileReaper)

    Permalink
    Annotations
    @Inject()

Type Members

  1. class DefaultTemporaryFile extends TemporaryFile

    Permalink

    A temporary file hold a reference to a real path, and will delete it when the reference is garbage collected.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def asJava: libs.Files.TemporaryFileCreator

    Permalink

    returns

    the Java version for the temporary file creator.

    Definition Classes
    TemporaryFileCreator
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def create(path: Path): TemporaryFile

    Permalink

    Creates a temporary file from an already existing file.

    Creates a temporary file from an already existing file.

    path

    the existing temp file path

    returns

    a Temporary file wrapping the existing file.

    Definition Classes
    DefaultTemporaryFileCreatorTemporaryFileCreator
  8. def create(prefix: String, suffix: String): TemporaryFile

    Permalink

    Creates a temporary file.

    Creates a temporary file.

    prefix

    the prefix of the file.

    suffix

    the suffix of the file

    returns

    the newly created temporary file.

    Definition Classes
    DefaultTemporaryFileCreatorTemporaryFileCreator
  9. def delete(tempFile: TemporaryFile): Try[Boolean]

    Permalink

    Deletes the temporary file.

    Deletes the temporary file.

    returns

    the boolean value of the FS delete operation, or an throwable.

    Definition Classes
    DefaultTemporaryFileCreatorTemporaryFileCreator
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from TemporaryFileCreator

Inherited from AnyRef

Inherited from Any

Ungrouped