Uses of Class
com.google.web.bindery.requestfactory.shared.Receiver
-
Packages that use Receiver Package Description com.google.web.bindery.requestfactory.gwt.client A package for managing client-server requests.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.testing -
-
Uses of Receiver in com.google.web.bindery.requestfactory.gwt.client
Methods in com.google.web.bindery.requestfactory.gwt.client with parameters of type Receiver Modifier and Type Method Description CRequestBatcher. get(Receiver<java.lang.Void> receiver)Returns a mutableRequestContextand enqueues the given receiver to be called as though it had been passed directly toRequestContext.fire(Receiver). -
Uses of Receiver in com.google.web.bindery.requestfactory.shared
Subclasses of Receiver in com.google.web.bindery.requestfactory.shared Modifier and Type Class Description classFanoutReceiver<T>A FanoutReceiver will forward its callbacks to zero or more other Receivers.Methods in com.google.web.bindery.requestfactory.shared with parameters of type Receiver Modifier and Type Method Description voidFanoutReceiver. add(Receiver<? super T> receiver)Register a receiver to be called by the fanout.voidRequest. fire(Receiver<? super T> receiver)Convenience method equivalent to callingto(...).fire().voidRequestContext. fire(Receiver<java.lang.Void> receiver)For receiving errors or validation failures only.RequestContextRequest. to(Receiver<? super T> receiver)Specify the object that will receive the result of the method invocation. -
Uses of Receiver in com.google.web.bindery.requestfactory.shared.testing
Methods in com.google.web.bindery.requestfactory.shared.testing with parameters of type Receiver Modifier and Type Method Description voidFakeRequest. fire(Receiver<? super T> receiver)No-op.voidFakeRequestContext. fire(Receiver<java.lang.Void> receiver)No-op.RequestContextFakeRequest. to(Receiver<? super T> receiver)Returnsnull.
-