Kinetica   C#   API  Version 7.2.3.0
Header.cs
Go to the documentation of this file.
1 
18 using System;
19 using System.Collections.Generic;
20 using System.Linq;
21 using Avro.IO;
22 
23 namespace Avro.File
24 {
25  public class Header
26  {
27  private IDictionary<string, byte[]> _metaData;
28  private byte[] _syncData;
29 
30  public IDictionary<string, byte[]> MetaData { get { return _metaData; }}
31  public byte[] SyncData { get { return _syncData; }}
32  public Schema Schema { get; set; }
33 
34  public Header()
35  {
36  _metaData = new Dictionary<string, byte[]>();
37  _syncData = new byte[16];
38  }
39  }
40 }
Base class for all schema types
Definition: Schema.cs:29
IDictionary< string, byte[]> MetaData
Definition: Header.cs:30
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
byte [] SyncData
Definition: Header.cs:31