blob: 9855f7bc82685f83101a63acf4b44e4c30257289 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 Innoopract Informationssysteme GmbH 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.rap.rwt.internal.lifecycle;
import org.eclipse.rap.rwt.internal.service.ServiceContext;
public interface IUIThreadHolder {
void setServiceContext( ServiceContext serviceContext );
void updateServiceContext();
void switchThread();
void terminateThread();
Thread getThread();
Object getLock();
}