Skip to content

Commit

Permalink
Examples: cleanup (#823)
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Wielders <pierre@wielders.net>
  • Loading branch information
HaseenaSainul and pwielders authored Aug 15, 2024
1 parent 8b61fc2 commit 799c837
Show file tree
Hide file tree
Showing 30 changed files with 18 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ if(EXAMPLE_COMRPCCLIENT)
endif()

if(PLUGIN_JSONRPC)
add_subdirectory(JSONRPCPlugin)
add_subdirectory(JSONRPCClient)
add_subdirectory(JSONRPC/Plugin)
add_subdirectory(JSONRPC/Client)
endif()

if(PLUGIN_FILETRANSFER)
Expand Down Expand Up @@ -84,6 +84,6 @@ if (EXAMPLE_PLUGINSMARTINTERFACETYPE_EXAMPLE)
endif()

if (EXAMPLE_SIMPLECOMRPC_TEST)
add_subdirectory(SimpleCOMRPCPluginServer)
add_subdirectory(SimpleCOMRPCClient)
add_subdirectory(SimpleCOMRPC/PluginServer)
add_subdirectory(SimpleCOMRPC/Client)
endif()
13 changes: 13 additions & 0 deletions examples/Examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Examples

* [COMRPCClient]: Shows how to hookup with Thunder using COMRPC
* [JSONRPC]: Shows, the communication between plugin and standalone client using JSONRPC
* [FileTransfer]: Shows, how to read a file from server and store in the given path
* [OutOfProcess]: Shows, how to implement an OutOfProcess plugins
* [StateController]: Shows, How to get state changes of a plugin
* [ConfigUpdateExample]: Shows, how to store plugin config in persistent store/path
* [IOConnector]: Shows, how to communicate with IOConnector plugin using JSONRPC as well as COMRPC
* [MessageControlUDPClient]: Shows, how to get Trace/logges from Thunder/Plugins
* [SimpleCOMRPC]: Standalone Client Server shows the communication using COMRPC
* [PluginSmartInterfaceType]: Shows the communication with a plugin using PluginSmartInterfaceType
* [DynamicLoading]: Shows, how to add interface to a running system
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <interfaces/IMath.h>
#include <interfaces/json/JsonData_Math.h>

#include "../JSONRPCPlugin/Data.h"
#include "../Plugin/Data.h"

namespace Thunder {

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 799c837

Please sign in to comment.