blob: 046e9a93da1179779b26ed6ecd7a5d4f5abff31e [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2003 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
Contributors:
IBM Corporation - Initial implementation
**********************************************************************/
package org.eclipse.core.filebuffers;
/**
* Executes runnables that describe how to synchronize a file buffer with its underlying file.
*
* @since 3.0
*/
public interface ISynchronizationContext {
/**
* Executes the given runnable.
*
* @param runnable the runnable to be executed
*/
void run(Runnable runnable);
}