Hi : I want to run an operation immediately after Guice "hydrates" my class with the necessary parameters. What is the idiomatic way to do this ? Is there an @after_running_constructor annotation... or something of the sort, that i can tag a "post-guice" initializer method ?
Normally, I would simply do this in an init() method or in the constructor itself, but it turns out that Guice is not injecting the necessary information into my class until the class's constructor has been run.