Class DeferredFileOutputStream.Builder

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • get

        public DeferredFileOutputStream get()
        Constructs a new instance.

        This builder use the aspects threshold, outputFile, prefix, suffix, directory, buffer size.

        Returns:
        a new instance.
      • setDirectory

        public DeferredFileOutputStream.Builder setDirectory​(java.io.File directory)
        Sets the temporary file directory.
        Parameters:
        directory - Temporary file directory.
        Returns:
        this
      • setOutputFile

        public DeferredFileOutputStream.Builder setOutputFile​(java.io.File outputFile)
        Sets the file to which data is saved beyond the threshold.
        Parameters:
        outputFile - The file to which data is saved beyond the threshold.
        Returns:
        this
      • setPrefix

        public DeferredFileOutputStream.Builder setPrefix​(java.lang.String prefix)
        Sets the prefix to use for the temporary file.
        Parameters:
        prefix - Prefix to use for the temporary file.
        Returns:
        this
      • setSuffix

        public DeferredFileOutputStream.Builder setSuffix​(java.lang.String suffix)
        Sets the suffix to use for the temporary file.
        Parameters:
        suffix - Suffix to use for the temporary file.
        Returns:
        this
      • setThreshold

        public DeferredFileOutputStream.Builder setThreshold​(int threshold)
        Sets the number of bytes at which to trigger an event.
        Parameters:
        threshold - The number of bytes at which to trigger an event.
        Returns:
        this