public interface

Request

com.google.gwt.requestfactory.shared.Request<T>
Known Indirect Subclasses

Class Overview

Implemented by the request objects created by this factory.

Summary

Public Methods
abstract void fire()
Submit this request.
abstract void fire(Receiver<? super T> receiver)
Convenience method equivalent to calling to(...).fire().
abstract RequestContext to(Receiver<? super T> receiver)
Specify the object that will receive the result of the method invocation.
abstract Request<T> with(String... propertyRefs)
Request additional reference properties to fetch with the return value.

Public Methods

public abstract void fire ()

Submit this request. Failures will be reported through the global uncaught exception handler, if any.

public abstract void fire (Receiver<? super T> receiver)

Convenience method equivalent to calling to(...).fire().

Parameters
receiver a Receiver instance

public abstract RequestContext to (Receiver<? super T> receiver)

Specify the object that will receive the result of the method invocation.

Parameters
receiver a Receiver instance
Returns

public abstract Request<T> with (String... propertyRefs)

Request additional reference properties to fetch with the return value.

Parameters
propertyRefs a list of reference property names as Strings
Returns