forked from aeron-io/simple-binary-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSbePrimitiveType.cs
More file actions
63 lines (53 loc) · 1.1 KB
/
Copy pathSbePrimitiveType.cs
File metadata and controls
63 lines (53 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
namespace Org.SbeTool.Sbe.Dll
{
/// <summary>
/// List of available SBE types
/// </summary>
public enum SbePrimitiveType
{
/// <summary>
/// SBE Type Char
/// </summary>
Char,
/// <summary>
/// SBE Type INT8
/// </summary>
Int8,
/// <summary>
/// SBE Type INT16
/// </summary>
Int16,
/// <summary>
/// SBE Type INT32
/// </summary>
Int32,
/// <summary>
/// SBE Type INT64
/// </summary>
Int64,
/// <summary>
/// SBE Type UINT8
/// </summary>
UInt8,
/// <summary>
/// SBE Type UINT16
/// </summary>
UInt16,
/// <summary>
/// SBE Type UINT32
/// </summary>
UInt32,
/// <summary>
/// SBE Type UINT64
/// </summary>
UInt64,
/// <summary>
/// SBE Type FLOAT
/// </summary>
Float,
/// <summary>
/// SBE Type DOUBLE
/// </summary>
Double
}
}