com.google.gwt.requestfactory.server.testing
Class InProcessRequestTransport
java.lang.Object
com.google.gwt.requestfactory.server.testing.InProcessRequestTransport
- All Implemented Interfaces:
- RequestTransport
Deprecated.
@Deprecated
public class InProcessRequestTransport
- extends java.lang.Object
- implements RequestTransport
A RequesTransports that calls a SimpleRequestProcessor
. This test can
be used for end-to-end tests of RequestFactory service methods in non-GWT
test suites.
ServiceLayer serviceLayer = ServiceLayer.create();
SimpleRequestProcessor processor = new SimpleRequestProcessor(serviceLayer);
EventBus eventBus = new SimpleEventBus();
MyRequestFactory f = RequestFactoryMagic.create(MyRequestFactory.class);
f.initialize(eventBus, new InProcessRequestTransport(processor));
RequestFactory has moved to
com.google.web.bindery.requestfactory
. This package will be
removed in a future version of GWT.
- See Also:
RequestFactoryMagic
,
ServiceLayer.create()
,
SimpleEventBus
,
SimpleRequestProcessor
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
InProcessRequestTransport
public InProcessRequestTransport(SimpleRequestProcessor processor)
- Deprecated.
send
public void send(java.lang.String payload,
RequestTransport.TransportReceiver receiver)
- Deprecated.
- Description copied from interface:
RequestTransport
- Called by the RequestFactory implementation.
- Specified by:
send
in interface RequestTransport
- Parameters:
payload
- the String payloadreceiver
- a RequestTransport.TransportReceiver
instance