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


Java DispatchAsync類代碼示例

本文整理匯總了Java中net.customware.gwt.dispatch.client.DispatchAsync的典型用法代碼示例。如果您正苦於以下問題:Java DispatchAsync類的具體用法?Java DispatchAsync怎麽用?Java DispatchAsync使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


DispatchAsync類屬於net.customware.gwt.dispatch.client包,在下文中一共展示了DispatchAsync類的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: IneFrameEntryPoint

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
public IneFrameEntryPoint(
    DispatchAsync dispatchAsync,
    EventBus eventBus,
    AuthManager authManager,
    DescriptorStore descStore,
    HistoryProvider historyProvider,
    I18nStore_Client clientI18nStore) {
    this.dispatchAsync = dispatchAsync;
    this.eventBus = eventBus;
    this.clientI18nStore = clientI18nStore;
    this.authManager = authManager;
    this.descStore = descStore;
    this.historyProvider = historyProvider;
}
 
開發者ID:inepex,項目名稱:ineform,代碼行數:15,代碼來源:IneFrameEntryPoint.java

示例2: IneDispatch

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Inject
public IneDispatch(
    DispatchAsync dispatcher,
    AsyncStatusIndicator defaultStatusIndicator,
    EventBus eventBus,
    ConnectionFailedHandler connectionFailedHandler) {
    super(connectionFailedHandler, eventBus);
    this.dispatcher = dispatcher;
    this.defaultStatusIndicator = defaultStatusIndicator;
    this.eventBus = eventBus;
}
 
開發者ID:inepex,項目名稱:ineform,代碼行數:12,代碼來源:IneDispatch.java

示例3: UploadFilesActivity

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Inject
public UploadFilesActivity(UploadFilesView view,
		PlaceController placeController, DispatchAsync dispatchAsync) {
	super(view.getHasMenus(), placeController, dispatchAsync);
	this.view = view;

	bind();
}
 
開發者ID:jlSites,項目名稱:funWithGwt,代碼行數:9,代碼來源:UploadFilesActivity.java

示例4: BasicActivity

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
public BasicActivity(HasMenus hasMenus, PlaceController placeController,
		DispatchAsync dispatchAsync) {
	this.hasMenus = hasMenus;
	this.placeController = placeController;
	this.dispatchAsync = dispatchAsync;

	bindMenus();
}
 
開發者ID:jlSites,項目名稱:funWithGwt,代碼行數:9,代碼來源:BasicActivity.java

示例5: getDistpatcher

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Override
public DispatchAsync getDistpatcher() {
	return dispatcher;
}
 
開發者ID:guiguib,項目名稱:yaph,代碼行數:5,代碼來源:ClientFactoryMobileImpl.java

示例6: ExponentialBackoffHandler

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Inject
public ExponentialBackoffHandler(EventBus eventBus, DispatchAsync dispatcher) {
    this.eventBus = eventBus;
    this.dispatcher = dispatcher;
}
 
開發者ID:inepex,項目名稱:ineform,代碼行數:6,代碼來源:ExponentialBackoffHandler.java

示例7: getDispatcher

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
public DispatchAsync getDispatcher() {
    return dispatcher;
}
 
開發者ID:inepex,項目名稱:ineform,代碼行數:4,代碼來源:IneDispatch.java

示例8: getDispatchAsync

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Provides
public DispatchAsync getDispatchAsync() {
    return new StandardDispatchAsync(new DefaultExceptionHandler());
}
 
開發者ID:inepex,項目名稱:ineform,代碼行數:5,代碼來源:TestIneFormClientGuiceModule.java

示例9: HomeworkActivity

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Inject
public HomeworkActivity(HomeworkView view, PlaceController placeController,
		DispatchAsync dispatchAsync) {
	super(view.getHasMenus(), placeController, dispatchAsync);
	this.view = view;
}
 
開發者ID:jlSites,項目名稱:funWithGwt,代碼行數:7,代碼來源:HomeworkActivity.java

示例10: HomeActivity

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
@Inject
public HomeActivity(HomeView view, PlaceController placeController,
		DispatchAsync dispatchAsync) {
	super(view.getHasMenus(), placeController, dispatchAsync);
	this.view = view;
}
 
開發者ID:jlSites,項目名稱:funWithGwt,代碼行數:7,代碼來源:HomeActivity.java

示例11: getDistpatcher

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
DispatchAsync getDistpatcher(); 
開發者ID:guiguib,項目名稱:yaph,代碼行數:2,代碼來源:ClientFactory.java

示例12: getDispatchAsync

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
public DispatchAsync getDispatchAsync(); 
開發者ID:inepex,項目名稱:ineform,代碼行數:2,代碼來源:AppGinjector.java

示例13: getDispatchAsync

import net.customware.gwt.dispatch.client.DispatchAsync; //導入依賴的package包/類
DispatchAsync getDispatchAsync(); 
開發者ID:inepex,項目名稱:ineform,代碼行數:2,代碼來源:ShowcaseGinjector.java


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