Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1aafb23c9ded72d648f1a6a0ca944db54f27efce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
 * Copyright (c) 2016 IAR Systems AB
 * 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:
 *     IAR Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.internal.ui.actions;

/**
 * Constants used by the DSF UI action adapters
 * 
 * @noimplement This interface is not intended to be implemented by clients.
 */
interface IDsfActionsConstants {
	/**
	 * The timeout in ms which action adapters will wait before disabling 
	 * the action itself, in order to avoid blocking the UI thread while
	 * waiting for the DSF thread to service a blocking query.
	 */
	static final int ACTION_ADAPTERS_TIMEOUT_MS = 500;

}

Back to the top