Skip to content
Snippets Groups Projects
Commit 89c16022 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add addSegment/s methods

parent 410aded8
No related branches found
No related tags found
1 merge request!89Implement core data structure of ArMem Memories
......@@ -9,6 +9,23 @@ module armarx
{
module data
{
struct AddSegmentInput
{
string coreSegmentName;
string providerSegmentName;
};
sequence<AddSegmentInput> AddSegmentsInput;
struct AddSegmentOutput
{
bool success = false;
string segmentID;
string errorMessage;
};
sequence<AddSegmentOutput> AddSegmentsOutput;
struct EntityUpdate
{
string entityID;
......@@ -35,6 +52,12 @@ module armarx
interface WritingInterface
{
/// Register a core or provider segment.
data::AddSegmentOutput addSegment(data::AddSegmentInput input);
/// Register multiple core or provider segments.
data::AddSegmentsOutput addSegments(data::AddSegmentsInput input);
// void removeSegment();
/// Commit data to the memory.
data::CommitResult commit(data::Commit commit);
};
......
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