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

Packages that use Result
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 Result in net.customware.gwt.dispatch.client
 

Methods in net.customware.gwt.dispatch.client with type parameters of type Result
<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 Result in net.customware.gwt.dispatch.client.service
 

Methods in net.customware.gwt.dispatch.client.service that return Result
 Result DispatchService.execute(Action<?> action)
           
 

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

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

Classes in net.customware.gwt.dispatch.server with type parameters of type Result
 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 Result
<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 Result in net.customware.gwt.dispatch.server.service
 

Methods in net.customware.gwt.dispatch.server.service that return Result
 Result DispatchServiceServlet.execute(Action<?> action)
           
 

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

Classes in net.customware.gwt.dispatch.shared with type parameters of type Result
 interface Action<R extends Result>
          An action represents a command sent to the Dispatch.
 

Classes in net.customware.gwt.dispatch.shared that implement Result
 class AbstractSimpleResult<T>
          A common use-case is returning a single value from an action.
 class AbstractUpdateResult<T>
          Provides support for simple update response which contain both the old value and new value.
 class BatchResult
          Contains the list of Results from successful actions in the BatchAction.
 

Methods in net.customware.gwt.dispatch.shared that return types with arguments of type Result
 java.util.List<Result> BatchResult.getResults()
           
 

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



Copyright © 2009 customware.net. All Rights Reserved.