Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Commits
89c16022
Commit
89c16022
authored
4 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Add addSegment/s methods
parent
410aded8
No related branches found
No related tags found
1 merge request
!89
Implement core data structure of ArMem Memories
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/RobotAPI/interface/armem/MemoryInterface.ice
+23
-0
23 additions, 0 deletions
source/RobotAPI/interface/armem/MemoryInterface.ice
with
23 additions
and
0 deletions
source/RobotAPI/interface/armem/MemoryInterface.ice
+
23
−
0
View file @
89c16022
...
...
@@ -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
);
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment