|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Result in net.customware.gwt.dispatch.client |
---|
Methods in net.customware.gwt.dispatch.client with type parameters of type Result | ||
---|---|---|
|
DispatchAsync.execute(A action,
com.google.gwt.user.client.rpc.AsyncCallback<R> callback)
|
|
|
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 | ||
---|---|---|
|
ExecutionContext.execute(A action)
Executes an action in the current context. |
|
|
Dispatch.execute(A action)
Executes the specified action and returns the appropriate result. |
|
|
DefaultDispatch.execute(A action)
|
|
|
ExecutionContext.execute(A action,
boolean allowRollback)
Executes an action in the current context. |
|
|
DefaultActionHandlerRegistry.findHandler(A action)
|
|
|
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 Result s 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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |