Parent Directory | Revision Log
First Commit, corresponds to Revision 1008 of Wikisquare-SVN
1 | package appl.parallel.services; |
2 | |
3 | import java.util.Vector; |
4 | |
5 | import appl.parallel.ComputingResource; |
6 | import appl.parallel.ComputingResourceContainer; |
7 | |
8 | /** |
9 | * A discovery service locates {@link ComputingResource ComputingRessouces} in a |
10 | * network. |
11 | * |
12 | * @author Dominik Appl |
13 | */ |
14 | public interface DiscoveryService extends Service { |
15 | |
16 | /** |
17 | * @return the discovered resources |
18 | */ |
19 | Vector<ComputingResourceContainer> getResources(); |
20 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |