/[xulu]/trunk/src/appl/parallel/thread/ComputingResourceThread.java
ViewVC logotype

Contents of /trunk/src/appl/parallel/thread/ComputingResourceThread.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 114 - (show annotations)
Mon Jul 11 11:31:25 2011 UTC (13 years, 5 months ago) by mojays
File size: 928 byte(s)
SCHMITZM library updated to current version (2.6-SNAPSHOT)
Added gt-xsd-filter.jar, gt-xsd-gml2.jar, picocontainer.jar and xsd.jar from Geotools 2.6.5
1 package appl.parallel.thread;
2
3 import appl.parallel.ComputingResource;
4 import appl.parallel.ComputingResourceProperties;
5 import appl.parallel.event.CommEvent.CommType;
6 import appl.parallel.event.CommEventSink;
7
8 /**
9 * @author Dominik Appl
10 */
11 public abstract class ComputingResourceThread extends ExecutionThread{
12
13
14 public ComputingResourceThread(ComputingResource resource, ComputingResourceProperties resourceInfos, Object argument, CommType type, CommEventSink sink){
15 super(resource, resourceInfos, argument,type,sink,false);
16 }
17
18 public ComputingResourceThread(ComputingResource resource, ComputingResourceProperties resourceInfos, Object argument, CommType type, CommEventSink sink, boolean disableTransferEvents){
19 super(resource, resourceInfos, argument,type,sink,disableTransferEvents);
20 }
21
22 protected ComputingResource getServer(){
23 return (ComputingResource) server;
24 }
25 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26