@FunctionalInterface public interface WriteValue
It's designed with the @FunctionalInterface annotation, suggesting that
it's primarily intended for lambda expressions and method references.
The @DontChain annotation indicates a recommendation against chaining
methods for implementations of this interface.
| Modifier and Type | Method and Description |
|---|---|
void |
writeValue(ValueOut out)
Writes the current state of the implementing object as a value
to the provided
ValueOut representation. |
void writeValue(ValueOut out) throws net.openhft.chronicle.core.io.InvalidMarshallableException
ValueOut representation.out - The output representation to write the value to.net.openhft.chronicle.core.io.InvalidMarshallableException - if any serialization error occurs.Copyright © 2024. All rights reserved.