source:
sample/hadoop-0.17/tw/org/nchc/util/MapReduceTask.java
Last change on this file was 20, checked in by waue, 16 years ago | |
---|---|
File size: 267 bytes |
Line | |
---|---|
1 | package tw.org.nchc.util; |
2 | |
3 | import org.apache.hadoop.conf.Configuration; |
4 | |
5 | public interface MapReduceTask { |
6 | |
7 | public void initialize(Configuration config); |
8 | |
9 | public void run(Configuration config) throws Exception; |
10 | |
11 | public void run() throws Exception; |
12 | } |
Note: See TracBrowser
for help on using the repository browser.