Skip to content

Commit 28e1ecc

Browse files
authored
Update README.md
1 parent b6d2dfe commit 28e1ecc

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,31 @@
33

44
# DDS.Net C++ Connector - v1.0.0
55

6-
*DDS.Net C++ Connector* intends to be a lightweight and performant connector for connecting distributed C++ applications through *DDS.Net Server*.
6+
*DDS.Net C++ Connector* intends to be a lightweight and performant connector for connecting distributed C++ applications through *DDS.Net Server*. The supported data types are:
7+
8+
| Main type | Sub-type | Represented data |
9+
|----------------------------------------------------|-------------------|-----------------------------------------------------|
10+
| ***Primitive***           | *String* | Sequence of characters in Unicode |
11+
| | *Boolean* | A boolean (True or False) |
12+
| | *Byte* | 1-byte Signed Integer |
13+
| | *Word* | 2-byte Signed Integer |
14+
| | *DWord* | 4-byte Signed Integer |
15+
| | *QWord* | 8-byte Signed Integer |
16+
| | *Unsigned Byte* | 1-byte Unsigned Integer |
17+
| | *Unsigned Word* | 2-byte Unsigned Integer |
18+
| | *Unsigned DWord* | 4-byte Unsigned Integer |
19+
| | *Unsigned QWord* | 8-byte Unsigned Integer |
20+
| | *Single* | A single precision (4-byte) Floating-point number |
21+
| | *Double* | A double precision (8-byte) Floating-point number |
22+
| ***Raw Bytes*** | - | Sequence of bytes |
23+
24+
 
25+
26+
> Data transfer with the server is only done when there is change in value
27+
28+
> Value subscribers are only invoked upon corresponding value changes
29+
30+
 
31+
32+
33+

0 commit comments

Comments
 (0)