You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works around a problem with premature initialization of schedulers when they are overridden but the default implementation is not required nor is desirable to get initialized in the first place. This several indirections allow this to happen.
You can follow the Git Blame to find the relevant PRs/issues, such as #4585.
static final class NewThreadTask implements Callable {
@OverRide
public Scheduler call() throws Exception {
return NewThreadHolder.DEFAULT;
}
}
change to
getInstance(){
return NewThreadHolder.DEFAULT;
}
the first What are the benefits?
The text was updated successfully, but these errors were encountered: