File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,42 @@ List all ids in the blob store.
41
41
"""
42
42
function listDataBlobs end
43
43
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
+
44
80
#
45
81
# addDataBlob!(dfg::AbstractDFG, entry::AbstractDataEntry, blob)
46
82
# updateDataBlob!(dfg::AbstractDFG, entry::AbstractDataEntry, blob)
You can’t perform that action at this time.
0 commit comments