how to handle async method return both awaitable and non-awaitable
What I want to do is that in an async method when it’s under some conditions I do not want to do anything and when it’s not I want to do the await code. (I do not want to throw an exception either because it’s ok to not to do anything.) How should I do this? or what’s the better of doing it?