-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refs #3807. Added fragmentation capability to streams. Updated to 1.1.0 (#21) * Refs #3807. Added fragmentation capability to streams. Updated to 1.1.0 * Refs #3807. Added pull request comments. (#22) * Product name. (#24) * Refs #4258. Changed product name. * Update docs/introduction.rst Co-Authored-By: julianbermudez <[email protected]> * Update docs/index.rst Co-Authored-By: julianbermudez <[email protected]> * Update docs/optimization.rst Co-Authored-By: julianbermudez <[email protected]> * Update docs/gen.rst Co-Authored-By: julianbermudez <[email protected]> * Update docs/shapes_demo.rst Co-Authored-By: julianbermudez <[email protected]> * Refs #3846. Title length fixes and agent usage changes. (#25) * Bugfix - discovery not supported on windows (#23) * Specified that discovery is not supported on windows. * Update docs/client.rst Co-Authored-By: lemunozm <[email protected]> * Update docs/client.rst * Update docs/client.rst Co-Authored-By: julianbermudez <[email protected]> * Refs #4310. Added docs to custom ip and port example modifications. (#26) * Transport documentation [4495] (#30) * Refs #4169. Add first version of Transport documentation. * Refs #4169. Add Serial Transport subsection. * Refs #4169. Finish transport docs. * Update docs/transport.rst Co-Authored-By: Luis Enrique Muñoz Martín <[email protected]> * Update docs/transport.rst Co-Authored-By: Luis Enrique Muñoz Martín <[email protected]> * Add review (#33) * Add review. * Update docs/transport.rst Co-Authored-By: Julián Bermúdez Ortega <[email protected]> * Refs #4495. Attend pull request comments. * Fix unsupported text format. * Update release notes. * Use different master file for pdf generation. * Unify case usage. * Add transport to content. * Update transport images.
- Loading branch information
1 parent
d07b692
commit 286cb8c
Showing
31 changed files
with
895 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Table Of contents | ||
================= | ||
|
||
.. toctree:: | ||
:caption: General | ||
|
||
index | ||
|
||
.. toctree:: | ||
:caption: Installation manual | ||
|
||
dependencies | ||
installation | ||
|
||
.. toctree:: | ||
:caption: User Manual | ||
|
||
introduction | ||
quickstart | ||
getting_started | ||
shapes_demo | ||
client | ||
gen | ||
agent | ||
entities | ||
operations | ||
deployment | ||
optimization | ||
transport | ||
|
||
.. toctree:: | ||
:caption: Release Notes | ||
|
||
notes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@startuml | ||
|
||
skinparam roundcorner 20 | ||
skinparam monochrome true | ||
|
||
package "server layer" <<Rectangle>> { | ||
class Server | ||
} | ||
|
||
interface Server { | ||
+virtual void <b>on_create_client()</b> = 0 | ||
+virtual void <b>on_delete_client()</b> = 0 | ||
+virtual ClientKey <b>get_client_key()</b> = 0 | ||
+virtual EndPoint <b>get_source()</b> = 0 | ||
.... | ||
-virtual bool <b>init()</b> = 0 | ||
-virtual bool <b>close()</b> = 0 | ||
-virtual bool <b>recv_message()</b> = 0 | ||
-virtual bool <b>send_message()</b> = 0 | ||
-virtual int <b>get_error()</b> = 0 | ||
} | ||
|
||
package "transport layer" <<Rectangle>> { | ||
class UDPServerBase | ||
} | ||
|
||
class UDPServerBase { | ||
+void <b>on_create_client()</b> override | ||
+void <b>on_delete_client()</b> override | ||
+virtual ClientKey <b>get_client_key()</b> = 0 | ||
+virtual EndPoint <b>get_source()</b> = 0 | ||
} | ||
|
||
package "platform layer" <<Rectangle>> { | ||
class UDPServerLinux | ||
class UDPServerWindows | ||
} | ||
|
||
class UDPServerLinux { | ||
-bool <b>init()</b> override | ||
-bool <b>close()</b> override | ||
-bool <b>recv_message()</b> override | ||
-bool <b>send_message()</b> override | ||
-int <b>get_error()</b> override | ||
} | ||
|
||
class UDPServerWindows { | ||
-bool <b>init()</b> override | ||
-bool <b>close()</b> override | ||
-bool <b>recv_message()</b> override | ||
-bool <b>send_message()</b> override | ||
-int <b>get_error()</b> override | ||
} | ||
|
||
Server <|-- UDPServerBase | ||
UDPServerBase <|-- UDPServerLinux | ||
UDPServerBase <|-- UDPServerWindows | ||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.