C++ mutex and const correctness

Viewed 16346

Is there convention regarding whenever method which is essentially read-only, but has mutex/ lock which may need to be modified, is const or not?

if there is not one, what would be disadvantage/bad design if such method is const

Thank you

2 Answers
Related