Uses of Class
com.clickhouse.data.ClickHouseOutputStream
Packages that use ClickHouseOutputStream
-
Uses of ClickHouseOutputStream in com.clickhouse.data
Subclasses of ClickHouseOutputStream in com.clickhouse.dataFields in com.clickhouse.data declared as ClickHouseOutputStreamModifier and TypeFieldDescriptionprotected final ClickHouseOutputStreamClickHouseDataProcessor.outputDeprecated.Methods in com.clickhouse.data that return ClickHouseOutputStreamModifier and TypeMethodDescriptiondefault ClickHouseOutputStreamClickHouseCompressionAlgorithm.compress(ClickHousePassThruStream stream, OutputStream output, int bufferSize, int level, Runnable postCloseAction) Deprecated.static ClickHouseOutputStreamClickHouseCompressionAlgorithm.createOutputStream(ClickHousePassThruStream stream, OutputStream output, int bufferSize, ClickHouseCompression compression, int level, Runnable postCloseAction) Deprecated.static ClickHouseOutputStreamClickHouseOutputStream.empty()Deprecated.Gets an empty output stream that consumes nothing and cannot be closed.final ClickHouseOutputStreamClickHouseDataProcessor.getOutputStream()Deprecated.Gets output stream.ClickHouseFile.getOutputStream()Deprecated.ClickHousePassThruStream.getOutputStream()Deprecated.Gets the output stream for writing.ClickHouseFile.newOutputStream(int bufferSize, Runnable postCloseAction) Deprecated.ClickHousePassThruStream.newOutputStream(int bufferSize, Runnable postCloseAction) Deprecated.Creates a wrapped output stream for writing.static ClickHouseOutputStreamClickHouseOutputStream.of(ClickHouseDeferredValue<OutputStream> deferredOutput, int bufferSize, Runnable postCloseAction) Deprecated.Wraps the deferred output stream.static ClickHouseOutputStreamClickHouseOutputStream.of(ClickHousePassThruStream stream, int bufferSize, Runnable postCloseAction) Deprecated.Wraps the given pass-thru stream as output stream.static ClickHouseOutputStreamClickHouseOutputStream.of(OutputStream output) Deprecated.Wraps the given output stream.static ClickHouseOutputStreamClickHouseOutputStream.of(OutputStream output, int bufferSize) Deprecated.Wraps the given output stream.static ClickHouseOutputStreamClickHouseOutputStream.of(OutputStream output, int bufferSize, ClickHouseCompression compression, int level, Runnable postCloseAction) Deprecated.Wraps the given output stream.final ClickHouseOutputStreamClickHouseOutputStream.transferBytes(byte[] bytes) Deprecated.abstract ClickHouseOutputStreamClickHouseOutputStream.transferBytes(byte[] bytes, int offset, int length) Deprecated.will be dropped in 0.5, please usewriteBuffer(ClickHouseByteBuffer)insteadClickHouseOutputStream.transferBytes(ByteBuffer buffer, int length) Deprecated.will be dropped in 0.5, please usewriteBuffer(ClickHouseByteBuffer)insteadClickHouseOutputStream.writeAsciiString(String value) Deprecated.Writes ascii string into output stream.ClickHouseOutputStream.writeBoolean(boolean b) Deprecated.Writes a byte (true=1, false=0) into output stream.ClickHouseOutputStream.writeBuffer(ClickHouseByteBuffer buffer) Deprecated.Writes bytes into output stream.abstract ClickHouseOutputStreamClickHouseOutputStream.writeByte(byte b) Deprecated.Writes a single byte into output stream.final ClickHouseOutputStreamClickHouseOutputStream.writeBytes(byte[] bytes) Deprecated.Writes bytes into output stream.abstract ClickHouseOutputStreamClickHouseOutputStream.writeBytes(byte[] bytes, int offset, int length) Deprecated.Writes copy of given bytes into output stream.ClickHouseOutputStream.writeBytes(ByteBuffer buffer, int length) Deprecated.Writes bytes into output stream.abstract ClickHouseOutputStreamClickHouseOutputStream.writeCustom(ClickHouseDataUpdater writer) Deprecated.Writes bytes using custom writer.ClickHouseOutputStream.writeString(String value, Charset charset) Deprecated.Writes string into the output stream.ClickHouseOutputStream.writeUnicodeString(String value) Deprecated.Writes unicode string into output stream.ClickHouseOutputStream.writeUnsignedVarInt(long value) Deprecated.Writes varint into output stream.ClickHouseOutputStream.writeVarInt(int value) Deprecated.Writes varint into output stream.Methods in com.clickhouse.data with parameters of type ClickHouseOutputStreamModifier and TypeMethodDescriptionClickHouseDataStreamFactory.getProcessor(ClickHouseDataConfig config, ClickHouseInputStream input, ClickHouseOutputStream output, Map<String, Serializable> settings, List<ClickHouseColumn> columns) Deprecated.Gets data processor according to givenClickHouseDataConfigand settings.longClickHouseInputStream.pipe(ClickHouseOutputStream output) Deprecated.Reads all remaining bytes and write into given output stream.voidClickHouseSerializer.CompositeSerializer.serialize(ClickHouseValue value, ClickHouseOutputStream output) voidClickHouseSerializer.serialize(ClickHouseValue value, ClickHouseOutputStream output) Deprecated.Writes serialized value to output stream.voidClickHouseWriter.write(ClickHouseOutputStream output) Deprecated.Writes data to output stream.Constructors in com.clickhouse.data with parameters of type ClickHouseOutputStreamModifierConstructorDescriptionprotectedClickHouseDataProcessor(ClickHouseDataConfig config, ClickHouseInputStream input, ClickHouseOutputStream output, List<ClickHouseColumn> columns, Map<String, Serializable> settings) Deprecated.Default constructor.
writeBuffer(ClickHouseByteBuffer)instead