use of org.eclipse.equinox.concurrent.future.IFuture in project ecf by eclipse.
the class ReflectiveRemoteServiceHandler method invokeFuture.
protected void invokeFuture(Class cls, IRemoteService remoteService, IRemoteCall remoteCall) throws InterruptedException, InvocationTargetException, OperationCanceledException {
// Make async call with future result
final IFuture asyncResult = remoteService.callAsync(remoteCall);
// Call blocking get and show result
showResult(cls.getName(), remoteCall, asyncResult.get());
}
use of org.eclipse.equinox.concurrent.future.IFuture in project ecf by eclipse.
the class SSLRemoteServiceProxyTest method testServiceListener.
public void testServiceListener() throws Exception {
final IRemoteServiceContainerAdapter[] adapters = getRemoteServiceAdapters();
done = false;
final Object lock = new Object();
adapters[1].addRemoteServiceListener(new IRemoteServiceListener() {
public void handleServiceEvent(IRemoteServiceEvent event) {
if (event instanceof IRemoteServiceRegisteredEvent) {
IRemoteServiceRegisteredEvent e = (IRemoteServiceRegisteredEvent) event;
IRemoteServiceReference ref = e.getReference();
remoteService = adapters[1].getRemoteService(ref);
assertNotNull(remoteService);
synchronized (lock) {
done = true;
lock.notify();
}
}
}
});
// Now register service on server (adapters[0]). This should result in notification on client (adapters[1])
// in above handleServiceEvent
adapters[0].registerRemoteService(new String[] { IConcatService.class.getName() }, createService(), customizeProperties(null));
// wait until block above called asynchronously
int count = 0;
synchronized (lock) {
while (!done && count++ < 10) {
try {
lock.wait(1000);
} catch (InterruptedException e) {
fail();
}
}
}
assertTrue(done);
if (remoteService == null)
return;
// We've got the remote service, so we're good to go
assertTrue(remoteService != null);
traceCallStart("callAsynchResult");
final IFuture result = remoteService.callAsync(createRemoteConcat("ECF AsynchResults ", "are cool"));
traceCallEnd("callAsynch");
assertNotNull(result);
Thread.sleep(SLEEPTIME);
}
use of org.eclipse.equinox.concurrent.future.IFuture in project ecf by eclipse.
the class SSLSimpleTest method testSimpleClientAndServerWithFuture.
public void testSimpleClientAndServerWithFuture() throws Exception {
IRemoteService remoteService = client.getRemoteService();
assertNotNull(remoteService);
// Use callSync
IFuture future = remoteService.callAsync(getRemoteConcatCall(TEST_STRING_2, TEST_STRING_1));
assertNotNull(future);
String result = (String) future.get();
assertTrue(result.equals(TEST_STRING_2 + TEST_STRING_1));
}
use of org.eclipse.equinox.concurrent.future.IFuture in project ecf by eclipse.
the class DiscoveryTest method testGetAsyncServicesIServiceTypeID.
/**
* Test method for
* {@link org.eclipse.ecf.discovery.IDiscoveryLocator#getAsyncServices(org.eclipse.ecf.discovery.identity.IServiceTypeID)}.
* @throws ContainerConnectException
* @throws InterruptedException
* @throws OperationCanceledException
*/
public void testGetAsyncServicesIServiceTypeID() throws ContainerConnectException, OperationCanceledException, InterruptedException {
registerService();
final IFuture aFuture = discoveryLocator.getAsyncServices(serviceInfo.getServiceID().getServiceTypeID());
final Object object = aFuture.get();
assertTrue(object instanceof IServiceInfo[]);
final IServiceInfo[] services = (IServiceInfo[]) object;
assertTrue("Found: " + services.length + Arrays.asList(services), services.length == eventsToExpect);
for (int i = 0; i < services.length; i++) {
IServiceInfo iServiceInfo = services[i];
if (comparator.compare(iServiceInfo, serviceInfo) == 0) {
return;
}
}
fail("Self registered service not found");
}
use of org.eclipse.equinox.concurrent.future.IFuture in project ecf by eclipse.
the class DiscoveryTest method testGetAsyncServiceInfo.
/**
* Test method for
* {@link org.eclipse.ecf.discovery.IDiscoveryLocator#getAsyncServiceInfo(org.eclipse.ecf.discovery.identity.IServiceID)}.
* @throws InterruptedException
* @throws OperationCanceledException
* @throws ContainerConnectException
*/
public void testGetAsyncServiceInfo() throws OperationCanceledException, InterruptedException, ContainerConnectException {
registerService();
final IFuture aFuture = discoveryLocator.getAsyncServiceInfo(serviceInfo.getServiceID());
final Object object = aFuture.get();
assertTrue(object instanceof IServiceInfo);
final IServiceInfo info = (IServiceInfo) object;
assertTrue("IServiceInfo should match, expected:\n\t" + serviceInfo + " but:\n\t" + info, comparator.compare(info, serviceInfo) == 0);
}
Aggregations