Modifier and Type | Interface and Description |
---|---|
interface |
CallbackDispatchRequest<R>
An implementation of
DispatchRequest that should be used by
ClientActionHandler s that make asynchronous calls. |
Modifier and Type | Class and Description |
---|---|
class |
CompletedDispatchRequest
An implementation of
DispatchRequest that is always completed. |
class |
DefaultCallbackDispatchRequest<R>
An implementation of
CallbackDispatchRequest that should be used by
ClientActionHandler s that make asynchronous calls that do not
return a Request . |
class |
DelagatingCallbackDispatchRequest<R>
An implementation of
DispatchRequest that should be used by
ClientActionHandler s that make asynchronous calls that return a
Request . |
class |
DelegatingDispatchRequest
An implementation of
DispatchRequest that is used in conjunction with
ClientActionHandler s. |
class |
GwtHttpDispatchRequest
An implementation of
DispatchRequest that is an adapter for Request . |
Modifier and Type | Method and Description |
---|---|
protected abstract DispatchRequest |
DispatchCall.doExecute()
Implementations must override this method to perform additional work when
DispatchCall.execute() is called. |
protected <A extends Action<R>,R extends Result> |
RpcDispatchAsync.doExecute(String securityCookie,
A action,
AsyncCallback<R> callback)
Deprecated.
|
protected abstract <A extends Action<R>,R extends Result> |
AbstractDispatchAsync.doExecute(String securityCookie,
A action,
AsyncCallback<R> callback)
Deprecated.
|
protected <A extends Action<R>,R extends Result> |
RpcDispatchAsync.doUndo(String securityCookie,
A action,
R result,
AsyncCallback<Void> callback)
Deprecated.
|
protected abstract <A extends Action<R>,R extends Result> |
AbstractDispatchAsync.doUndo(String securityCookie,
A action,
R result,
AsyncCallback<Void> callback)
Deprecated.
|
DispatchRequest |
DispatchCall.execute()
Call this method to execute the
action wrapped by this instance. |
DispatchRequest |
DelegatingAsyncCallback.execute(A action,
AsyncCallback<R> resultCallback) |
<A extends Action<R>,R extends Result> |
AbstractDispatchAsync.execute(A action,
AsyncCallback<R> callback)
Deprecated.
|
<A extends Action<R>,R extends Result> |
AbstractDispatchAsync.undo(A action,
R result,
AsyncCallback<Void> callback)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
DelegatingDispatchRequest.setDelegate(DispatchRequest delegate)
Populates the
DelegatingDispatchRequest object with a DispatchRequest . |
Constructor and Description |
---|
DelagatingCallbackDispatchRequest(DispatchRequest request,
AsyncCallback<R> callback) |
Modifier and Type | Method and Description |
---|---|
DispatchRequest |
ExecuteCommand.execute(A action,
AsyncCallback<R> resultCallback)
Execute an action.
|
DispatchRequest |
ClientActionHandler.execute(A action,
AsyncCallback<R> resultCallback,
ExecuteCommand<A,R> executeCommand)
Handles the specified action.
|
DispatchRequest |
UndoCommand.undo(A action,
R result,
AsyncCallback<Void> callback)
Undo an action.
|
DispatchRequest |
ClientActionHandler.undo(A action,
R result,
AsyncCallback<Void> callback,
UndoCommand<A,R> undoCommand)
Undoes the specified action if supported.
|
Modifier and Type | Method and Description |
---|---|
DispatchRequest |
AbstractCachingClientActionHandler.execute(A action,
AsyncCallback<R> resultCallback,
ExecuteCommand<A,R> executeCommand) |
DispatchRequest |
AbstractCachingClientActionHandler.undo(A action,
R result,
AsyncCallback<Void> callback,
UndoCommand<A,R> undoCommand) |
Modifier and Type | Method and Description |
---|---|
protected DispatchRequest |
RestDispatchCall.doExecute() |
<A extends RestAction<R>,R> |
RestDispatchAsync.execute(A action,
AsyncCallback<R> callback) |
Modifier and Type | Method and Description |
---|---|
<A extends RestAction<R>,R> |
RestDispatch.execute(A action,
AsyncCallback<R> callback)
This method is called client-side whenever a new action is executed.
|
Modifier and Type | Method and Description |
---|---|
protected DispatchRequest |
RpcDispatchUndoCall.doExecute() |
protected DispatchRequest |
RpcDispatchExecuteCall.doExecute() |
<A extends Action<R>,R extends Result> |
RpcDispatchAsync.execute(A action,
AsyncCallback<R> callback) |
<A extends Action<R>,R extends Result> |
RpcDispatchAsync.undo(A action,
R result,
AsyncCallback<Void> callback) |
Modifier and Type | Method and Description |
---|---|
<A extends Action<R>,R extends Result> |
DispatchAsync.execute(A action,
AsyncCallback<R> callback)
This method is called client-side whenever a new action is executed.
|
<A extends Action<R>,R extends Result> |
DispatchAsync.undo(A action,
R result,
AsyncCallback<Void> callback)
This method is called client-side whenever a previous executed action need to be undone.
|
Modifier and Type | Method and Description |
---|---|
<A extends Action<R>,R extends Result> |
DispatchAsync.execute(A action,
AsyncCallback<R> callback)
Deprecated.
This method is called client-side whenever a new action is executed.
|
<A extends Action<R>,R extends Result> |
DispatchAsync.undo(A action,
R result,
AsyncCallback<Void> callback)
Deprecated.
This method is called client-side whenever a previous executed action need
to be undone.
|
Modifier and Type | Method and Description |
---|---|
<A extends Action<R>,R extends Result> |
TestDispatchAsync.execute(A action,
AsyncCallback<R> callback) |
<A extends Action<R>,R extends Result> |
TestDispatchAsync.undo(A action,
R result,
AsyncCallback<Void> callback) |
Copyright © 2010-2014 ArcBees. All Rights Reserved.