Package | Description |
---|---|
com.google.web.bindery.requestfactory.gwt.client |
A package for managing client-server requests.
|
com.google.web.bindery.requestfactory.gwt.client.testing |
Classes used for testing the request factory service.
|
com.google.web.bindery.requestfactory.server |
Server-side classes for mediating between the client-side and the persistent
datastore.
|
com.google.web.bindery.requestfactory.shared |
Shared classes used on both the client and the server side for transmitting
data between the server and the client in JSON format.
|
com.google.web.bindery.requestfactory.shared.impl | |
com.google.web.bindery.requestfactory.shared.testing | |
com.google.web.bindery.requestfactory.vm |
Classes to use RequestFactory in a non-GWT (e.g., Android or desktop) JRE
environment.
|
Modifier and Type | Class and Description |
---|---|
class |
RequestBatcher<F extends RequestFactory,C extends RequestContext>
A RequestBatcher is a convenience class that allows RequestFactory operations
to be aggregated over a single tick of the event loop and sent as one HTTP
request.
|
Modifier and Type | Method and Description |
---|---|
void |
RequestFactoryEditorDriver.initialize(EventBus eventBus,
RequestFactory requestFactory,
E editor)
Overload of
RequestFactoryEditorDriver.initialize(RequestFactory, Editor) to allow a modified
EventBus to be monitored for subscription services. |
void |
RequestFactoryEditorDriver.initialize(RequestFactory requestFactory,
E editor)
Initializes a driver with the editor it will run, and a RequestFactory to
use for subscription services.
|
Modifier and Type | Method and Description |
---|---|
RequestFactory |
MockRequestFactoryEditorDriver.getRequestFactory()
Returns
null or the last value recorded. |
Modifier and Type | Method and Description |
---|---|
void |
MockRequestFactoryEditorDriver.initialize(EventBus eventBus,
RequestFactory requestFactory,
E editor)
Records its arguments.
|
void |
MockRequestFactoryEditorDriver.initialize(RequestFactory requestFactory,
E editor) |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends RequestFactory> |
ServiceLayerDecorator.resolveRequestFactory(java.lang.String binaryName) |
java.lang.Class<? extends RequestFactory> |
ServiceLayerCache.resolveRequestFactory(java.lang.String binaryName) |
abstract java.lang.Class<? extends RequestFactory> |
ServiceLayer.resolveRequestFactory(java.lang.String token)
Loads and validates a RequestFactory interface.
|
java.lang.Class<? extends RequestFactory> |
ResolverServiceLayer.resolveRequestFactory(java.lang.String binaryName) |
Modifier and Type | Method and Description |
---|---|
RequestFactory |
RequestContext.getRequestFactory()
Returns the
RequestFactory that created the RequestContext. |
Modifier and Type | Class and Description |
---|---|
class |
com.google.web.bindery.requestfactory.shared.impl.AbstractRequestFactory
Base type for generated RF interfaces.
|
Modifier and Type | Class and Description |
---|---|
class |
FakeRequestFactory
A no-op implementation of
RequestFactory that can be used for
building mocks. |
Modifier and Type | Method and Description |
---|---|
RequestFactory |
FakeRequestContext.getRequestFactory()
Returns
null . |
Modifier and Type | Class and Description |
---|---|
(package private) class |
InProcessRequestFactory
A JRE-compatible implementation of RequestFactory.
|
Modifier and Type | Method and Description |
---|---|
static <T extends RequestFactory> |
RequestFactorySource.create(java.lang.Class<T> requestFactory)
Create an instance of a RequestFactory.
|
Constructor and Description |
---|
InProcessRequestFactory(java.lang.Class<? extends RequestFactory> requestFactoryInterface) |