Guillaume Desbieys
Results
2
comments of
Guillaume Desbieys
Those dependencies are automatically provided for you because they are constructor annotated. For example `provideThreadExecutor` requires a `JobExecutor`. If you look at the class `JobExecutor` you'll see that the class...
That's right at least that's how I understand it! For example `JobExecutor` is an implementation of `ThreadExecutor`. In the code `JobExecutor` is used because you don't care about implementation. You...