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

Annotation of /branches/1.8-gt2-2.6/src/appl/parallel/thread/DataServerThread.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (hide annotations)
Mon Aug 31 14:23:19 2009 UTC (15 years, 3 months ago) by mojays
File size: 911 byte(s)
Branch 1.8-gt2-2.6 (from rev 45) for geotools 2.6 migration
1 mojays 2 package appl.parallel.thread;
2    
3     import appl.parallel.ComputingResourceProperties;
4     import appl.parallel.event.CommEventSink;
5     import appl.parallel.event.CommEvent.CommType;
6     import appl.parallel.server.PartitionDataServer;
7    
8     /**
9     * @author Dominik Appl
10     */
11     public abstract class DataServerThread extends ExecutionThread {
12    
13     public DataServerThread(PartitionDataServer dataServer,ComputingResourceProperties resourceInfos, Object argument,CommType type, CommEventSink sink){
14     super(dataServer,resourceInfos,argument,type,sink,false);
15     }
16    
17     public DataServerThread(PartitionDataServer dataServer,ComputingResourceProperties resourceInfos, Object argument,CommType type, CommEventSink sink, boolean disableTransferEvents){
18     super(dataServer,resourceInfos,argument,type,sink,disableTransferEvents);
19     }
20    
21     protected PartitionDataServer getServer(){
22     return (PartitionDataServer) server;
23     }
24    
25     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26