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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 77 - (hide annotations)
Wed Feb 10 16:14:27 2010 UTC (14 years, 10 months ago) by alfonx
File size: 911 byte(s)
backup of trunk
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