Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ec375ffa1d78fd7e91db2baf6aeef92d96add24a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*******************************************************************************
 * Copyright (c) 2013 Wind River Systems, Inc. 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.runtime.services.interfaces;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.tcf.te.runtime.interfaces.callback.ICallback;

/**
 * Connection service.
 * <p>
 * Allows to connect or disconnect to a given connectable context.
 */
public interface IConnectionService extends IService {

	/**
	 * The constants for the (cached) connection state.
	 */
	public enum State { Disconnected, Connecting, Connected, Disconnecting }

	/**
	 * Returns the connection state of the given connectable context.
	 *
	 * @param context The connectable context. Must not be <code>null</code>.
	 * @return The connection state.
	 */
	public State getState(Object context);

	/**
	 * Connects the given connectable context.
	 * <p>
	 * If the given context is in connecting state, the callback is invoked once the
	 * connectable enters the connected state.
	 * <p>
	 * If the given context is in connected state, the callback is invoked immediately.
	 * <p>
	 * If the given context is in disconnecting state, the callback is invoked immediately
	 * with an cancel status.
	 *
	 * @param context The connectable context. Must not be <code>null</code>.
	 * @param callback The callback. Must not be <code>null</code>.
	 * @param monitor The progress monitor or <code>null</code>.
	 */
	public void connect(Object context, ICallback callback, IProgressMonitor monitor);

	/**
	 * Disconnects the given connectable context.
	 * <p>
	 * If the given context is in disconnecting state, the callback is invoked once the
	 * connectable enters the disconnected state.
	 * <p>
	 * If the given context is in disconnected state, the callback is invoked immediately.
	 * <p>
	 * If the given context is in connecting state, the connect sequence is aborted and
	 * rolled back. The callback is invoked once the connectable enters the disconnected state.
	 *
	 * @param context The connectable context. Must not be <code>null</code>.
	 * @param callback The callback. Must not be <code>null</code>.
	 * @param monitor The progress monitor or <code>null</code>.
	 */
	public void disconnect(Object context, ICallback callback, IProgressMonitor monitor);
}

Back to the top