當前位置: 首頁>>代碼示例>>Java>>正文


Java PostExecutionThread類代碼示例

本文整理匯總了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;
}
 
開發者ID:nanyi5452,項目名稱:cleanDemo,代碼行數:8,代碼來源:GetUserDetails.java

示例2: providePostExecutionThread

import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
@Provides @Singleton PostExecutionThread providePostExecutionThread(UIThread uiThread) {
  return uiThread;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:4,代碼來源:ApplicationModule.java

示例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();
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:6,代碼來源:UseCase.java

示例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;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:7,代碼來源:GetUserList.java

示例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;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:7,代碼來源:GetUserDetails.java

示例6: UseCaseTestClass

import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
UseCaseTestClass(ThreadExecutor threadExecutor, PostExecutionThread postExecutionThread) {
  super(threadExecutor, postExecutionThread);
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:4,代碼來源:UseCaseTest.java

示例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);
}
 
開發者ID:nanyi5452,項目名稱:cleanDemo,代碼行數:6,代碼來源:UserModule.java

示例8: UseCase

import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
protected UseCase(ThreadExecutor threadExecutor,
    PostExecutionThread postExecutionThread) {
  this.threadExecutor = threadExecutor;
  this.postExecutionThread = postExecutionThread;
}
 
開發者ID:nanyi5452,項目名稱:cleanDemo,代碼行數:6,代碼來源:UseCase.java

示例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;
}
 
開發者ID:nanyi5452,項目名稱:cleanDemo,代碼行數:7,代碼來源:GetUserList.java

示例10: UseCaseTestClass

import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
protected UseCaseTestClass(
    ThreadExecutor threadExecutor,
    PostExecutionThread postExecutionThread) {
  super(threadExecutor, postExecutionThread);
}
 
開發者ID:nanyi5452,項目名稱:cleanDemo,代碼行數:6,代碼來源:UseCaseTest.java

示例11: postExecutionThread

import com.fernandocejas.android10.sample.domain.executor.PostExecutionThread; //導入依賴的package包/類
PostExecutionThread postExecutionThread(); 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:2,代碼來源:ApplicationComponent.java


注:本文中的com.fernandocejas.android10.sample.domain.executor.PostExecutionThread類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。