Hook for when a module has loaded

Is there a to get notified when a module (preferably the current module) has been loaded? Just like @on_load, but afterwards.

I need this feature, because I want to access the documentation for the module via Code.fetch_docs/1 and process it. Best thing I could come up with is sending a delayed message from the on_load-function, but that feels like a really dirty way of achieving that.