/[xulu]/branches/1.8-gt2-2.6/src/appl/parallel/thread/ComputingResourceThread.java
ViewVC logotype

Contents of /branches/1.8-gt2-2.6/src/appl/parallel/thread/ComputingResourceThread.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show annotations)
Mon Aug 31 14:23:19 2009 UTC (15 years, 3 months ago) by mojays
File size: 928 byte(s)
Branch 1.8-gt2-2.6 (from rev 45) for geotools 2.6 migration
1 package appl.parallel.thread;
2
3 import appl.parallel.ComputingResource;
4 import appl.parallel.ComputingResourceProperties;
5 import appl.parallel.event.CommEventSink;
6 import appl.parallel.event.CommEvent.CommType;
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