Interface Serializer<T>
-
- All Known Implementing Classes:
DefaultSerializer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Serializer<T>
A strategy interface for streaming an object to an OutputStream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidserialize(T object, OutputStream outputStream)Write an object of type T to the given OutputStream.
-
-
-
Method Detail
-
serialize
void serialize(T object, OutputStream outputStream) throws IOException
Write an object of type T to the given OutputStream.Note: Implementations should not close the given OutputStream (or any decorators of that OutputStream) but rather leave this up to the caller.
- Parameters:
object- the object to serializeoutputStream- the output stream- Throws:
IOException- in case of errors writing to the stream
-
-