CAvro.Generic.PreresolvingDatumReader< T >.ArrayAccess | Defines the interface for a class that provides access to an array implementation |
CAvro.Generic.PreresolvingDatumWriter< T >.ArrayAccess | Defines the interface for a class that provides access to an array implementation |
CAvro.Reflect.ArrayHelper | Class to help serialize and deserialize arrays. Arrays need the following methods Count(), Add(), Clear().true This class allows these methods to be specified externally to the collection |
▼CAttribute | |
CAvro.Reflect.AvroFieldAttribute | Attribute that specifies the mapping between an Avro field and C# class property |
CAvro.Reflect.ClassCache | Class holds a cache of C# classes and their properties. The key for the cache is the schema full name |
▼CAvro.File.Codec | Base class for Avro-supported compression codecs for data files. Note that Codec objects may maintain internal state (e.g. buffers) and are not thread safe |
CAvro.File.DeflateCodec | Implements deflate compression and decompression |
CAvro.File.NullCodec | Implements a codec that does not perform any compression. This codec simply returns the bytes presented to it "as-is" |
CAvro.CodeGen | Generates C# code from Avro schemas and protocols |
CAvro.CodeGenUtil | A singleton class containing data used by codegen |
CAvro.File.DataBlock | Encapsulates a block of data read by the DataFileReader<T>. We will remove this class from the public API in a future version because it is only meant to be used internally |
CAvro.File.DataFileConstants | Constants used in data files |
▼CAvro.Generic.DatumReader< T > | Defines the interface for an object that reads data of a schema |
CAvro.Generic.GenericReader< T > | A general purpose reader of data from avro streams. This can optionally resolve if the reader's and writer's schemas are different. This class is a wrapper around DefaultReader and offers a little more type safety. The default reader has the flexibility to return any type of object for each read call because the Read() method is generic. This class on the other hand can only return a single type because the type is a parameter to the class. Any user defined extension should, however, be done to DefaultReader. This class is sealed |
►CAvro.Generic.PreresolvingDatumReader< T > | A general purpose reader of data from avro streams. This reader analyzes and resolves the reader and writer schemas when constructed so that reads can be more efficient. Once constructed, a reader can be reused or shared among threads to avoid incurring more resolution costs |
CAvro.Generic.GenericDatumReader< T > | PreresolvingDatumReader<T> for reading data to GenericRecord classes or primitives. For more information about performance considerations for choosing this implementation |
CAvro.Specific.SpecificDatumReader< T > | PreresolvingDatumReader for reading data to ISpecificRecord classes |
CAvro.Reflect.ReflectReader< T > | Reader wrapper class for reading data and storing into specific classes |
CAvro.Specific.SpecificReader< T > | Reader wrapper class for reading data and storing into specific classes |
▼CAvro.Generic.DatumWriter< T > | Defines the interface for an object that writes data of a schema |
►CAvro.Generic.GenericWriter< T > | A typesafe wrapper around DefaultWriter. While a specific object of DefaultWriter allows the client to serialize a generic type, an object of this class allows only a single type of object to be serialized through it |
CAvro.Specific.SpecificWriter< T > | Generic wrapper class for writing data from specific objects |
►CAvro.Generic.PreresolvingDatumWriter< T > | A general purpose writer of data from avro streams. This writer analyzes the writer schema when constructed so that writes can be more efficient. Once constructed, a writer can be reused or shared among threads to avoid incurring more resolution costs |
CAvro.Generic.GenericDatumWriter< T > | PreresolvingDatumWriter for writing data from GenericRecords or primitive types. For more information about performance considerations for choosing this implementation |
CAvro.Specific.SpecificDatumWriter< T > | PreresolvingDatumWriter for writing data from ISpecificRecord classes |
CAvro.Reflect.ReflectWriter< T > | Generic wrapper class for writing data from specific objects |
▼CAvro.IO.Decoder | Decoder is used to decode Avro data on a stream. There are methods to read the Avro types on the stream. There are also methods to skip items, which are usually more efficient than reading, on the stream |
CAvro.IO.BinaryDecoder | Decoder for Avro binary format |
▼CAvro.Generic.DefaultReader | The default implementation for the generic reader. It constructs new .NET objects for avro objects on the stream and returns the .NET object. Users can directly use this class or, if they want to customize the object types for different Avro schema types, can derive from this class. There are enough hooks in this class to allow customization |
►CAvro.Specific.SpecificDefaultReader | Reader class for reading data and storing into specific classes |
CAvro.Reflect.ReflectDefaultReader | Reader class for reading data and storing into specific classes |
▼CAvro.Generic.DefaultWriter | A General purpose writer for serializing objects into a Stream using Avro. This class implements a default way of serializing objects. But one can derive a class from this and override different methods to achieve results that are different from the default implementation |
►CAvro.Specific.SpecificDefaultWriter | Class for writing data from any specific objects |
CAvro.Reflect.ReflectDefaultWriter | Class for writing data from any specific objects |
▼CDictionary | |
CAvro.PropertyMap | Provides access to custom properties (those not defined in the Avro spec) in a JSON object |
CAvro.Reflect.DotnetClass | Collection of DotNetProperty objects to repre |
▼CAvro.IO.Encoder | Defines the interface for a class that provides low-level support for serializing Avro values |
CAvro.IO.BinaryEncoder | Write leaf values |
CAvro.Generic.PreresolvingDatumReader< T >.EnumAccess | Defines the interface for a class that provides access to an enum implementation |
CAvro.Generic.PreresolvingDatumWriter< T >.EnumAccess | Obsolete - This will be removed from the public API in a future version |
▼CException | |
►CAvro.AvroException | A generic Avro exception |
CAvro.AvroRuntimeException | A generic Avro exception |
CAvro.AvroTypeException | Used to communicate an exception associated with Avro typing |
CAvro.CodeGenException | CodeGen Exception |
CAvro.ProtocolParseException | Used to communicate an exception that occurred while parsing a protocol |
CAvro.SchemaParseException | Used to communicate an exception that occurred while parsing a schema |
CAvro.Specific.SpecificException | Base class for specific exceptions |
CAvro.Field | Class for fields defined in a record |
CAvro.Generic.PreresolvingDatumReader< T >.FixedAccess | Defines the interface for a class that provides access to a fixed implementation |
CAvro.Generic.GenericEnum | The default class to hold values for enum schema in GenericReader and GenericWriter |
▼CAvro.Generic.GenericFixed | The default type used by GenericReader and GenericWriter for objects for FixedSchema |
CAvro.Specific.SpecificFixed | Base class for all generated classes |
CAvro.File.Header | Header on an Avro data file |
▼CAvro.Reflect.IAvroFieldConverter | Converters can be added to properties with an AvroField attribute. Converters convert between the property type and the avro type |
CAvro.Reflect.DateTimeOffsetToLongConverter | Convert C# DateTimeOffset properties to long unix time |
►CAvro.Reflect.TypedFieldConverter< TAvro, TProperty > | Constructor |
CAvro.Reflect.FuncFieldConverter< TAvro, TProperty > | Field converter using a Func |
CAvro.IO.ICallback< in in T > | Obsolete - This will be removed from the public API in a future version |
CAvro.Specific.ICallbackRequestor | TODO: This interface needs better documentation |
▼CIComparable | |
CAvro.AvroDecimal | Represents a big decimal |
CAvro.AvroDecimal | Represents a big decimal |
▼CIConvertible | |
CAvro.AvroDecimal | Represents a big decimal |
▼CIDisposable | |
►CAvro.File.IFileReader< T > | Defines the interface for an object that reads data from a file |
CAvro.File.DataFileReader< T > | Provides access to Avro data written using the DataFileWriter<T> |
►CAvro.File.IFileWriter< T > | Defines the interface for an object that stores in a file a sequence of data conforming to a schema |
CAvro.File.DataFileWriter< T > | Stores in a file a sequence of data conforming to a schema. The schema is stored in the file with the data. Each datum in a file is of the same schema. Data is written with a DatumWriter<T>. Data is grouped into blocks. A synchronization marker is written between blocks, so that files may be split. Blocks may be compressed. Extensible metadata is stored at the end of the file. Files may be appended to |
▼CIEquatable | |
CAvro.AvroDecimal | Represents a big decimal |
CAvro.Generic.GenericRecord | The default type used by GenericReader and GenericWriter for RecordSchema |
▼CIFormattable | |
CAvro.AvroDecimal | Represents a big decimal |
CAvro.Specific.ISpecificProtocol | Defines the interface for a class that implements a specific protocol. TODO: This interface needs better documentation |
▼CAvro.Specific.ISpecificRecord | Interface class for generated classes |
CAvro.Specific.SpecificException | Base class for specific exceptions |
CAvro.JsonHelper | |
▼CAvro.Util.LogicalType | Base for all logical type implementations |
CAvro.Util.Decimal | The 'decimal' logical type |
CAvro.Util.LogicalUnixEpochType< T > | Base for all logical type implementations that are based on the Unix Epoch date/time |
CAvro.Util.Uuid | UUid logical type |
CAvro.Util.LogicalTypeFactory | A factory for logical type implementations |
▼CAvro.Util.LogicalUnixEpochType< DateTime > | |
CAvro.Util.Date | The 'date' logical type |
CAvro.Util.LocalTimestampMicrosecond | The 'local-timestamp-micros' logical type |
CAvro.Util.LocalTimestampMillisecond | The 'local-timestamp-millis' logical type |
CAvro.Util.TimestampMicrosecond | The 'timestamp-micros' logical type |
CAvro.Util.TimestampMillisecond | The 'timestamp-millis' logical type |
▼CAvro.Util.LogicalUnixEpochType< TimeSpan > | |
CAvro.Util.TimeMicrosecond | The 'time-micros' logical type |
CAvro.Util.TimeMillisecond | The 'time-millis' logical type |
CAvro.Generic.PreresolvingDatumReader< T >.MapAccess | Defines the interface for a class that provides access to a map implementation |
▼CAvro.Generic.PreresolvingDatumWriter< T >.MapAccess | Defines the interface for a class that provides access to a map implementation |
CAvro.Generic.PreresolvingDatumWriter< T >.DictionaryMapAccess | Provides access to map properties from an IDictionary |
CAvro.Message | Represents a message in an Avro protocol |
CAvro.Specific.ObjectCreator | Resolves and creates types associated with a schema and/or name. You should generally use the shared Instance to take advantage caching |
CAvro.Protocol | A set of messages forming an application protocol |
CAvro.Generic.PreresolvingDatumReader< T >.RecordAccess | Defines the interface for a class that provides access to a record implementation |
CAvro.Generic.PreresolvingDatumWriter< T >.RecordFieldWriter | Correlates a record field with the writer used to serialize that field |
▼CAvro.Schema | Base class for all schema types |
►CAvro.NamedSchema | Base class for all named schemas: fixed, enum, record |
CAvro.EnumSchema | Class for enum type schemas |
CAvro.FixedSchema | Class for fixed schemas |
CAvro.RecordSchema | Class for record schemas |
►CAvro.UnnamedSchema | Base class for all unnamed schemas |
CAvro.ArraySchema | Class for array type schemas |
CAvro.LogicalSchema | Class for logical type schemas |
CAvro.MapSchema | Class for map schemas |
CAvro.PrimitiveSchema | Class for schemas of primitive types |
CAvro.UnionSchema | Class for union schemas |
CAvro.SchemaName | Class to store schema name, namespace, enclosing namespace and documentation |
CAvro.SchemaNames | A class that contains a list of named schemas. This is used when reading or writing a schema/protocol. This prevents reading and writing of duplicate schema definitions within a protocol or schema file |
▼CStream | |
►CAvro.IO.InputStream | Base class for an input stream |
CAvro.IO.ByteBufferInputStream | Utility to present MemoryStreams as an InputStream |
►CAvro.IO.OutputStream | Base class for an output stream |
CAvro.IO.ByteBufferOutputStream | Utility to collect data written to an OutputStream in MemoryStreams |