Kinetica   C#   API  Version 7.2.3.0
DatumWriter.cs
Go to the documentation of this file.
1 
18 using System;
19 using Avro.IO;
20 
21 namespace Avro.Generic
22 {
23  public interface DatumWriter<T>
24  {
25  Schema Schema { get; }
26  void Write(T datum, Encoder encoder);
27  }
28 }
Base class for all schema types
Definition: Schema.cs:29
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
void Write(T datum, Encoder encoder)