use of org.whispersystems.jobqueue.requirements.NetworkRequirementProvider in project Signal-Android by WhisperSystems.
the class MessageRetrievalService method onCreate.
@Override
public void onCreate() {
super.onCreate();
ApplicationContext.getInstance(this).injectDependencies(this);
networkRequirement = new NetworkRequirement(this);
networkRequirementProvider = new NetworkRequirementProvider(this);
networkRequirementProvider.setListener(this);
retrievalThread = new MessageRetrievalThread();
retrievalThread.start();
setForegroundIfNecessary();
}
Aggregations