Uses of Interface
net.customware.gwt.dispatch.shared.Action

Packages that use Action
net.customware.gwt.dispatch.client   
net.customware.gwt.dispatch.client.service   
net.customware.gwt.dispatch.server   
net.customware.gwt.dispatch.server.service   
net.customware.gwt.dispatch.shared   
 

Uses of Action in net.customware.gwt.dispatch.client
 

Methods in net.customware.gwt.dispatch.client with type parameters of type Action
<A extends Action<R>,R extends Result>
void
DispatchAsync.execute(A action, com.google.gwt.user.client.rpc.AsyncCallback<R> callback)
           
<A extends Action<R>,R extends Result>
void
DefaultDispatchAsync.execute(A action, com.google.gwt.user.client.rpc.AsyncCallback<R> callback)
           
 

Uses of Action in net.customware.gwt.dispatch.client.service
 

Methods in net.customware.gwt.dispatch.client.service with parameters of type Action
 Result DispatchService.execute(Action<?> action)
           
 void DispatchServiceAsync.execute(Action<?> action, com.google.gwt.user.client.rpc.AsyncCallback<Result> callback)
          GWT-RPC service asynchronous (client-side) interface
 

Uses of Action in net.customware.gwt.dispatch.server
 

Classes in net.customware.gwt.dispatch.server with type parameters of type Action
 class AbstractActionHandler<A extends Action<R>,R extends Result>
          Simple abstract super-class for ActionHandler implementations that forces the Action class to be passed in as a constructor to the handler.
 interface ActionHandler<A extends Action<R>,R extends Result>
          Instances of this interface will handle specific types of Action classes.
 class ActionResult<A extends Action<R>,R extends Result>
          This contains both the original Action and the Result of that action.
 

Methods in net.customware.gwt.dispatch.server with type parameters of type Action
<A extends Action<R>,R extends Result>
R
ExecutionContext.execute(A action)
          Executes an action in the current context.
<A extends Action<R>,R extends Result>
R
Dispatch.execute(A action)
          Executes the specified action and returns the appropriate result.
<A extends Action<R>,R extends Result>
R
DefaultDispatch.execute(A action)
           
<A extends Action<R>,R extends Result>
R
ExecutionContext.execute(A action, boolean allowRollback)
          Executes an action in the current context.
<A extends Action<R>,R extends Result>
ActionHandler<A,R>
DefaultActionHandlerRegistry.findHandler(A action)
           
<A extends Action<R>,R extends Result>
ActionHandler<A,R>
ActionHandlerRegistry.findHandler(A action)
          Searches the registry and returns the first handler which supports the specied action, or null if none is available.
 

Uses of Action in net.customware.gwt.dispatch.server.service
 

Methods in net.customware.gwt.dispatch.server.service with parameters of type Action
 Result DispatchServiceServlet.execute(Action<?> action)
           
 

Uses of Action in net.customware.gwt.dispatch.shared
 

Classes in net.customware.gwt.dispatch.shared that implement Action
 class BatchAction
          This provides a simple way to send multiple actions to be executed in sequence.
 

Methods in net.customware.gwt.dispatch.shared that return Action
 Action<?>[] BatchAction.getActions()
          The list of actions to execute.
 

Constructors in net.customware.gwt.dispatch.shared with parameters of type Action
BatchAction(BatchAction.OnException onException, Action<?>... actions)
           
UnsupportedActionException(Action<? extends Result> action)
           
 

Constructor parameters in net.customware.gwt.dispatch.shared with type arguments of type Action
UnsupportedActionException(java.lang.Class<? extends Action<? extends Result>> actionClass)
           
 



Copyright © 2009 customware.net. All Rights Reserved.