use of org.apache.camel.api.management.ManagedOperation in project camel by apache.
the class MongoDbIdempotentRepository method remove.
@ManagedOperation(description = "Remove the key from the store")
@Override
public boolean remove(E key) {
Bson document = eq(MONGO_ID, key);
DeleteResult res = collection.deleteOne(document);
return res.getDeletedCount() > 0;
}
Aggregations