Uses of Interface
org.elasticsearch.common.io.stream.Writeable.Writer
-
Packages that use Writeable.Writer Package Description org.elasticsearch.common.io.stream -
-
Uses of Writeable.Writer in org.elasticsearch.common.io.stream
Methods in org.elasticsearch.common.io.stream with parameters of type Writeable.Writer Modifier and Type Method Description <T> voidStreamOutput. writeArray(Writeable.Writer<T> writer, T[] array)Writes the specified array to the stream using the specifiedWriteable.Writerfor each element in the array.<T> voidStreamOutput. writeCollection(Collection<T> collection, Writeable.Writer<T> writer)Writes a collection of objects via aWriteable.Writer.<K,V>
voidStreamOutput. writeMap(Map<K,V> map, Writeable.Writer<K> keyWriter, Writeable.Writer<V> valueWriter)<K,V>
voidStreamOutput. writeMapOfLists(Map<K,List<V>> map, Writeable.Writer<K> keyWriter, Writeable.Writer<V> valueWriter)<T> voidStreamOutput. writeOptionalArray(Writeable.Writer<T> writer, T[] array)Same asStreamOutput.writeArray(Writer, Object[])but the provided array may be null.
-