本文整理匯總了Java中com.fernandocejas.android10.sample.domain.executor.PostExecutionThread類的典型用法代碼示例。如果您正苦於以下問題:Java PostExecutionThread類的具體用法?Java PostExecutionThread怎麽用?Java PostExecutionThread使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
PostExecutionThread類屬於com.fernandocejas.android10.sample.domain.executor包,在下文中一共展示了PostExecutionThread類的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: GetUserDetails
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Inject
public GetUserDetails(int userId, UserRepository userRepository,
ThreadExecutor threadExecutor, PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
this.userId = userId;
this.userRepository = userRepository;
}
示例2: providePostExecutionThread
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Provides @Singleton PostExecutionThread providePostExecutionThread(UIThread uiThread) {
return uiThread;
}
示例3: UseCase
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
UseCase(ThreadExecutor threadExecutor, PostExecutionThread postExecutionThread) {
this.threadExecutor = threadExecutor;
this.postExecutionThread = postExecutionThread;
this.disposables = new CompositeDisposable();
}
示例4: GetUserList
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Inject
GetUserList(UserRepository userRepository, ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
this.userRepository = userRepository;
}
示例5: GetUserDetails
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Inject
GetUserDetails(UserRepository userRepository, ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
this.userRepository = userRepository;
}
示例6: UseCaseTestClass
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
UseCaseTestClass(ThreadExecutor threadExecutor, PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
}
示例7: provideGetUserDetailsUseCase
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Provides @PerActivity @Named("userDetails") UseCase provideGetUserDetailsUseCase(
UserRepository userRepository, ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
return new GetUserDetails(userId, userRepository, threadExecutor, postExecutionThread);
}
示例8: UseCase
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
protected UseCase(ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
this.threadExecutor = threadExecutor;
this.postExecutionThread = postExecutionThread;
}
示例9: GetUserList
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Inject
public GetUserList(UserRepository userRepository, ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
this.userRepository = userRepository;
}
示例10: UseCaseTestClass
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
protected UseCaseTestClass(
ThreadExecutor threadExecutor,
PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
}
示例11: postExecutionThread
import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
PostExecutionThread postExecutionThread();