Skip to content
Snippets Groups Projects
Commit 5e1ff54b authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Change ExampleMemoryClient

* commit data every iteration
* add some changing data (set the_double to sin of the current time)
* increase frequency of run
* add comments
parent f90bac9f
No related branches found
No related tags found
No related merge requests found
...@@ -132,11 +132,15 @@ namespace armarx ...@@ -132,11 +132,15 @@ namespace armarx
queryExampleData(); queryExampleData();
} }
CycleUtil c(1000); CycleUtil c(100);
int i = 0; int i = 0;
while (!task->isStopped() && i++ < 100) while (!task->isStopped())
{ {
commitSingleSnapshot(entityID); commitExampleData();
if (i++ < 100)
{
commitSingleSnapshot(entityID);
}
c.waitForCycleDuration(); c.waitForCycleDuration();
} }
} }
...@@ -311,6 +315,7 @@ namespace armarx ...@@ -311,6 +315,7 @@ namespace armarx
armem::Time time = armem::Time::now(); armem::Time time = armem::Time::now();
armem::Commit commit; armem::Commit commit;
//default
{ {
armem::EntityUpdate& update = commit.updates.emplace_back(); armem::EntityUpdate& update = commit.updates.emplace_back();
update.entityID = providerID.withEntityName("default"); update.entityID = providerID.withEntityName("default");
...@@ -319,6 +324,7 @@ namespace armarx ...@@ -319,6 +324,7 @@ namespace armarx
armem::example::ExampleData primitive; armem::example::ExampleData primitive;
update.instancesData = { primitive.toAron() }; update.instancesData = { primitive.toAron() };
} }
//the answer
{ {
armem::EntityUpdate& update = commit.updates.emplace_back(); armem::EntityUpdate& update = commit.updates.emplace_back();
update.entityID = providerID.withEntityName("the answer"); update.entityID = providerID.withEntityName("the answer");
...@@ -326,7 +332,7 @@ namespace armarx ...@@ -326,7 +332,7 @@ namespace armarx
armem::example::ExampleData data; armem::example::ExampleData data;
data.the_bool = true; data.the_bool = true;
data.the_double = 2 * 42.42; data.the_double = std::sin(time.toSecondsDouble());
data.the_float = 21.5; data.the_float = 21.5;
data.the_int = 42; data.the_int = 42;
data.the_long = 424242; data.the_long = 424242;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment