This is a simple question, but when I was starting with async/await, it cost me hours to resolve and I couldn't easily find any answers. Hopefully this will help others who run into the same issue.
When creating a class, I often frame it out by creating a number of inactive method stubs and I don't want to throw NotImplemented exceptions or see warnings about the methods not being awaited. These methods should be callable, but should just do nothing.
So, how do I to create inactive async methods?