I want to create job manager, which jobs could have injectable members.
jobManager.queueJob(new Job1());
After job is queued i want to call object graph and inject jobs fields before starting it.
What is the proper way to access object graph from JobManager class?
Currently I'm injecting android application class that has getter for ObjectGraph.