Kinetica   C#   API  Version 7.2.3.0
DatumReader.cs
Go to the documentation of this file.
1 
18 using System;
19 using System.Collections.Generic;
20 using Avro.IO;
21 
22 namespace Avro.Generic
23 {
24  public interface DatumReader<T>
25  {
28 
34  T Read(T reuse, Decoder decoder);
35  }
36 }
Base class for all schema types
Definition: Schema.cs:29
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
Decoder is used to decode Avro data on a stream.
Definition: Decoder.cs:27
T Read(T reuse, Decoder decoder)
Read a datum.