blob: a62d958468d428f1544d8d939fcf3e2fcec1fae3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.rap.e4.internal;
import org.eclipse.e4.ui.di.UISynchronize;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventHandler;
/**
* The helper will properly place UI-aware consumers on the main thread.
*/
public class RAPUIEventHandler implements EventHandler {
final private EventHandler eventHandler;
final private UISynchronize uiSync;
public RAPUIEventHandler(EventHandler eventHandler, UISynchronize uiSync) {
this.eventHandler = eventHandler;
this.uiSync = uiSync;
}
/* (non-Javadoc)
* @see org.osgi.service.event.EventHandler#handleEvent(org.osgi.service.event.Event)
*/
public void handleEvent(final Event event) {
if (uiSync == null)
eventHandler.handleEvent(event);
else {
if(RAPEventBroker.isAsyncEvent(event)) {
uiSync.asyncExec(new Runnable() {
public void run() {
eventHandler.handleEvent(event);
}
});
} else {
uiSync.syncExec(new Runnable() {
public void run() {
eventHandler.handleEvent(event);
}
});
}
}
}
}