Uses of Class
org.apache.flink.runtime.io.network.api.writer.RecordWriter
-
-
Uses of RecordWriter in org.apache.flink.runtime.io.network.api.writer
Subclasses of RecordWriter in org.apache.flink.runtime.io.network.api.writer Modifier and Type Class Description classBroadcastRecordWriter<T extends org.apache.flink.core.io.IOReadableWritable>A special record-oriented runtime result writer only for broadcast mode.classChannelSelectorRecordWriter<T extends org.apache.flink.core.io.IOReadableWritable>A regular record-oriented runtime result writer.Methods in org.apache.flink.runtime.io.network.api.writer that return RecordWriter Modifier and Type Method Description RecordWriter<T>RecordWriterBuilder. build(ResultPartitionWriter writer)RecordWriter<T>MultipleRecordWriters. getRecordWriter(int outputIndex)RecordWriter<T>NonRecordWriter. getRecordWriter(int outputIndex)RecordWriter<T>RecordWriterDelegate. getRecordWriter(int outputIndex)Returns the internal actual record writer instance based on the output index.RecordWriter<T>SingleRecordWriter. getRecordWriter(int outputIndex)Constructors in org.apache.flink.runtime.io.network.api.writer with parameters of type RecordWriter Constructor Description SingleRecordWriter(RecordWriter<T> recordWriter)Constructor parameters in org.apache.flink.runtime.io.network.api.writer with type arguments of type RecordWriter Constructor Description MultipleRecordWriters(List<RecordWriter<T>> recordWriters) -
Uses of RecordWriter in org.apache.flink.runtime.operators
Fields in org.apache.flink.runtime.operators with type parameters of type RecordWriter Modifier and Type Field Description protected List<RecordWriter<?>>BatchTask. eventualOutputsThe output writers for the data that this task forwards to the next task.Method parameters in org.apache.flink.runtime.operators with type arguments of type RecordWriter Modifier and Type Method Description static voidBatchTask. clearWriters(List<RecordWriter<?>> writers)static <T> org.apache.flink.util.Collector<T>BatchTask. getOutputCollector(AbstractInvokable task, TaskConfig config, ClassLoader cl, List<RecordWriter<?>> eventualOutputs, int outputOffset, int numOutputs)Creates theCollectorfor the given task, as described by the given configuration. -
Uses of RecordWriter in org.apache.flink.runtime.operators.shipping
Methods in org.apache.flink.runtime.operators.shipping that return types with arguments of type RecordWriter Modifier and Type Method Description List<RecordWriter<SerializationDelegate<T>>>OutputCollector. getWriters()List of writers that are associated with this output collectorConstructor parameters in org.apache.flink.runtime.operators.shipping with type arguments of type RecordWriter Constructor Description OutputCollector(List<RecordWriter<SerializationDelegate<T>>> writers, org.apache.flink.api.common.typeutils.TypeSerializer<T> serializer)Initializes the output collector with a set of writers. -
Uses of RecordWriter in org.apache.flink.streaming.runtime.io
Constructors in org.apache.flink.streaming.runtime.io with parameters of type RecordWriter Constructor Description RecordWriterOutput(RecordWriter<SerializationDelegate<StreamRecord<OUT>>> recordWriter, org.apache.flink.api.common.typeutils.TypeSerializer<OUT> outSerializer, org.apache.flink.util.OutputTag outputTag, boolean supportsUnalignedCheckpoints)
-