Package org.apache.parquet.format.event
Class TypedConsumer.StructConsumer
- java.lang.Object
-
- org.apache.parquet.format.event.TypedConsumer
-
- org.apache.parquet.format.event.TypedConsumer.StructConsumer
-
- Enclosing class:
- TypedConsumer
public abstract static class TypedConsumer.StructConsumer extends TypedConsumer
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.parquet.format.event.TypedConsumer
TypedConsumer.BoolConsumer, TypedConsumer.ByteConsumer, TypedConsumer.DoubleConsumer, TypedConsumer.I16Consumer, TypedConsumer.I32Consumer, TypedConsumer.I64Consumer, TypedConsumer.ListConsumer, TypedConsumer.MapConsumer, TypedConsumer.SetConsumer, TypedConsumer.StringConsumer, TypedConsumer.StructConsumer
-
-
Field Summary
-
Fields inherited from class org.apache.parquet.format.event.TypedConsumer
type
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedStructConsumer()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidconsumeStruct(org.apache.thrift.protocol.TProtocol protocol, EventBasedThriftReader reader)can either delegate to the reader or read the struct from the protocol reader.readStruct(fieldConsumer);-
Methods inherited from class org.apache.parquet.format.event.TypedConsumer
read
-
-
-
-
Method Detail
-
consumeStruct
public abstract void consumeStruct(org.apache.thrift.protocol.TProtocol protocol, EventBasedThriftReader reader) throws org.apache.thrift.TExceptioncan either delegate to the reader or read the struct from the protocol reader.readStruct(fieldConsumer);- Parameters:
protocol- the underlying protocolreader- the reader to delegate to- Throws:
org.apache.thrift.TException- if any thrift related error occurs during the reading
-
-