Uses of Interface
de.xima.fc.common.function.ISerializableInputStreamSupplier
Packages that use ISerializableInputStreamSupplier
Package
Description
Contains the API for a prompt service that abstract the details of a particular provider.
Contains default implementations for various interfaces defined by the handler API.
The prompt API is kept intentionally low-level to support a wide range of use cases.
-
Uses of ISerializableInputStreamSupplier in de.xima.fc.common.data.file
Methods in de.xima.fc.common.data.file that return ISerializableInputStreamSupplierModifier and TypeMethodDescriptionDefaultSerializableFile.data()ISerializableFile.data()Gets the binary data of the file.Methods in de.xima.fc.common.data.file with parameters of type ISerializableInputStreamSupplierModifier and TypeMethodDescriptionstatic ISerializableFileDefaultSerializableFile.serializableFile(String fileName, String contentType, long fileSize, ISerializableInputStreamSupplier data) Creates a serializable file with the given file name, content type and data. -
Uses of ISerializableInputStreamSupplier in de.xima.fc.prompt.service
Methods in de.xima.fc.prompt.service that return ISerializableInputStreamSupplierModifier and TypeMethodDescriptionIPromptStoredData.inputStreamSupplier()Gets the supplier for the input stream that can be used to read the stored binary data. -
Uses of ISerializableInputStreamSupplier in de.xima.fc.prompt.service.defaults
Methods in de.xima.fc.prompt.service.defaults that return ISerializableInputStreamSupplierMethods in de.xima.fc.prompt.service.defaults with parameters of type ISerializableInputStreamSupplierModifier and TypeMethodDescriptionstatic IPromptStoredDataDefaultPromptStoredData.ofSupplier(int fileSize, ISerializableInputStreamSupplier inputStreamSupplier) Creates a new prompt stored data instance with the given file size and input stream supplier.static IPromptBinaryDataPromptBinaryData.supplierBinaryData(String fileName, String mimeType, Instant lastModified, int fileSize, ISerializableInputStreamSupplier supplier) Creates an implementation ofIPromptBinaryDatabacked by an input stream supplier. -
Uses of ISerializableInputStreamSupplier in de.xima.fc.prompt.service.support
Constructors in de.xima.fc.prompt.service.support with parameters of type ISerializableInputStreamSupplierModifierConstructorDescriptionPromptConfigFile(String fileName, String mimeType, Instant lastModified, int fileSize, ISerializableInputStreamSupplier data) Creates a new file with the given name, MIME type, last modified date, and binary data.