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

Annotation of /trunk/src/appl/parallel/thread/DataServerThread.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 114 - (hide annotations)
Mon Jul 11 11:31:25 2011 UTC (13 years, 5 months ago) by mojays
File size: 911 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 mojays 2 package appl.parallel.thread;
2    
3     import appl.parallel.ComputingResourceProperties;
4 mojays 114 import appl.parallel.event.CommEvent.CommType;
5 mojays 2 import appl.parallel.event.CommEventSink;
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