blob: adff9b1c971650353707f88378c59238fe2b815f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin 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:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.api;
/**
* @author rushan
*
*/
public interface VaadinExecutorService {
void invokeLater(Runnable runnable);
void invokeLater(Object key, Runnable runnable);
void removeAllInvokeLater();
boolean containsKey(Object key);
void invokeLaterAlways(Runnable runnable);
void removeAlwaysRunnable(Runnable runnable);
void removeAllAlwaysRunnables();
void dispose();
}