Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f5f67697d75e90accd419029388ce19732211bbf (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
/*******************************************************************************
 * Copyright (c) 2013 protos software gmbh (http://www.protos.de).
 * 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:
 * 		Henrik Rentz-Reichert (initial contribution)
 * 
 *******************************************************************************/

package org.eclipse.etrice.runtime.java.messaging;

/**
 * @author Henrik Rentz-Reichert
 *
 */
public interface IMessageService extends IRTObject, IMessageReceiver, Runnable {

	enum ExecMode {
		POLLED, BLOCKED, MIXED
	}
	
	void terminate();

	Address getFreeAddress();
	
	void freeAddress(Address addr);

	void addMessageReceiver(IMessageReceiver receiver);
	void removeMessageReceiver(IMessageReceiver receiver);
	
	void addPollingMessageReceiver(IMessageReceiver receiver);
	void removePollingMessageReceiver(IMessageReceiver receiver);
	
	/**
	 * set the thread of this service
	 * (also sets the thread priority)
	 * 
	 * @param thread
	 */
	void setThread(Thread thread);

	/**
	 * @return the thread of this service
	 */
	Thread getThread();
}

Back to the top