Skip to content

Commit 2407a9e

Browse files
committed
data crud docstrings
1 parent 3a0efc7 commit 2407a9e

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

src/DataBlobs/services/DataEntryBlob.jl

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,42 @@ List all ids in the blob store.
4141
"""
4242
function listDataBlobs end
4343

44+
##==============================================================================
45+
## Data CRUD interface
46+
##==============================================================================
47+
48+
"""
49+
$(SIGNATURES)
50+
Get the data entry and blob for the specified blobstore or dfg retured as a tuple.
51+
Related
52+
[`getDataEntry`](@ref)
53+
"""
54+
function getData end
55+
56+
"""
57+
$(SIGNATURES)
58+
Add a data Entry and Blob to a distributed factor graph or BlobStore.
59+
Related
60+
[`addDataEntry!`](@ref)
61+
"""
62+
function addData! end
63+
64+
"""
65+
$(SIGNATURES)
66+
Update a data entry or blob to the blob store or dfg.
67+
Related
68+
[`updateDataEntry`](@ref)
69+
"""
70+
function updateData! end
71+
72+
"""
73+
$(SIGNATURES)
74+
Delete a data entry and blob from the blob store or dfg.
75+
Related
76+
[`deleteDataEntry`](@ref)
77+
"""
78+
function deleteData! end
79+
4480
#
4581
# addDataBlob!(dfg::AbstractDFG, entry::AbstractDataEntry, blob)
4682
# updateDataBlob!(dfg::AbstractDFG, entry::AbstractDataEntry, blob)

0 commit comments

Comments
 (0)