File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
bindings/python/YarpUtilities/src Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,12 @@ void CreateVectorsCollectionServer(pybind11::module& module)
4545 Eigen::Ref<const Eigen::VectorXd> data) -> bool {
4646 return impl.populateData (key, data);
4747 })
48- .def (" prepare_data" , &VectorsCollectionServer::prepareData);
48+ .def (" prepare_data" , &VectorsCollectionServer::prepareData)
49+ .def (" get_metadata" , &VectorsCollectionServer::getMetadata)
50+ .def (" get_metadata_incremental" ,
51+ &VectorsCollectionServer::getMetadataIncremental,
52+ py::arg (" from_version" ))
53+ .def (" are_metadata_ready" , &VectorsCollectionServer::areMetadataReady);
4954}
5055
5156void CreateVectorsCollectionClient (pybind11::module & module )
@@ -86,7 +91,8 @@ void CreateVectorsCollectionClient(pybind11::module& module)
8691 }
8792 VectorsCollection collection = *collectionPtr;
8893 return collection;
89- });
94+ })
95+ .def (" is_new_metadata_available" , &VectorsCollectionClient::isNewMetadataAvailable);
9096}
9197
9298void CreateVectorsCollectionMetadata (pybind11::module & module )
You can’t perform that action at this time.
0 commit comments