Package com.cognitect.transit
Interface Writer<T>
-
public interface Writer<T>
Interface for writing values in transit format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
write(T o)
Writes a single value to an output stream
-
-
-
Method Detail
-
write
void write(T o)
Writes a single value to an output stream- Parameters:
o
- the value to write
-
-