Uses of Interface
de.xima.fc.interfaces.ISerializableThrowingSupplier
Packages that use ISerializableThrowingSupplier
Package
Description
Contains default implementations for various interfaces defined by the handler API.
-
Uses of ISerializableThrowingSupplier in de.xima.fc.common.file
Methods in de.xima.fc.common.file that return ISerializableThrowingSupplierModifier and TypeMethodDescriptionstatic ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator()Gets a creators that creates temporary files in the default temporary directory.static ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator(String folder) Gets a creators that creates temporary files in the given folder.static ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator(String prefix, String suffix) Gets a creators that creates temporary files in the default temporary directory, but with the given prefix and suffix for the file name.static ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator(String folder, String prefix, String suffix) Gets a creators that creates temporary files in the given folder, and with the given prefix and suffix for the file name.static ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator(Path folder) Gets a creators that creates temporary files in the given folder.static ISerializableThrowingSupplier<Path> TempFileCreators.newTempFileCreator(Path folder, String prefix, String suffix) Gets a creators that creates temporary files in the given folder, and with the given prefix and suffix for the file name.Methods in de.xima.fc.common.file that return types with arguments of type ISerializableThrowingSupplierModifier and TypeMethodDescriptionTempFileCreators.withNewTempFolder(String folderPrefix, String filePrefix, String fileSuffix) Creates a new temporary folder within the default temporary folder and returns a creator that creates temporary files in that new temporary folder.TempFileCreators.withNewTempFolder(Path folder, String folderPrefix, String filePrefix, String fileSuffix) Creates a new temporary folder within the given folder and returns a creator that creates temporary files in that new temporary folder. -
Uses of ISerializableThrowingSupplier in de.xima.fc.common.filesystem
Methods in de.xima.fc.common.filesystem with parameters of type ISerializableThrowingSupplierModifier and TypeMethodDescriptionstatic <FD> ICommonFileSystem<FD> CommonFileSystems.simpleDiskCachedFileSystem(ICommonFileSystem<FD> delegate, ISerializableThrowingSupplier<Path> tempFileCreator) Wraps an existing file system in a cached file system stores the file content on the disk temporarily, so it does have to be read from the original file system each time. -
Uses of ISerializableThrowingSupplier in de.xima.fc.filter.db
Methods in de.xima.fc.filter.db that return ISerializableThrowingSupplierModifier and TypeMethodDescriptionContextualEntityContext.contextualEntityContextFactory(IUser user) Returns a supplier that creates new contextual entity contexts with the given user. -
Uses of ISerializableThrowingSupplier in de.xima.fc.gui.elfinder
Methods in de.xima.fc.gui.elfinder with parameters of type ISerializableThrowingSupplierModifier and TypeMethodDescriptionElFinderDynamicResourceFileEntityThumbnails.RequestHandlerBuilder.tempFileCreator(ISerializableThrowingSupplier<Path> tempFileCreator) Sets the creator for temporary files that will hold the thumbnail content.FileSystemElFinderConnectorConfig.BuilderStage3.tempFileCreator(ISerializableThrowingSupplier<Path> tempFileCreator) Sets the creator for creating temporary files when needed. -
Uses of ISerializableThrowingSupplier in de.xima.fc.interfaces
Methods in de.xima.fc.interfaces that return ISerializableThrowingSupplierModifier and TypeMethodDescriptionstatic <T> ISerializableThrowingSupplier<T> ISerializableThrowingSupplier.of(ISerializableThrowingSupplier<T> supplier) Returns the given supplier, for improved variable inference.Methods in de.xima.fc.interfaces with parameters of type ISerializableThrowingSupplierModifier and TypeMethodDescriptionstatic <T> ISerializableThrowingSupplier<T> ISerializableThrowingSupplier.of(ISerializableThrowingSupplier<T> supplier) Returns the given supplier, for improved variable inference. -
Uses of ISerializableThrowingSupplier in de.xima.fc.prompt.service.defaults
Methods in de.xima.fc.prompt.service.defaults with parameters of type ISerializableThrowingSupplierModifier and TypeMethodDescriptionstatic IPromptFileStorageDefaultPromptFileStorage.ofFileCreator(ISerializableThrowingSupplier<Path> fileCreator) Creates a newIPromptFileStoragethat uses the given file creator to create (temporary) files on the file system that will be used to store the binary data.