Interface Writable.Writer<V>

  • Enclosing interface:
    Writable
    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 static interface Writable.Writer<V>
    • Method Detail

      • write

        void write​(StreamOutput out,
                   V value)
            throws IOException
        Write V-type value to the output stream.
        Parameters:
        out - Output to write the value too
        value - The value to add
        Throws:
        IOException