V - the data typepublic abstract class Rendezvous<V extends org.apache.hadoop.io.Writable> extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
BEGIN
The method name of
begin(). |
static String |
END
The method name of
end(). |
static String |
PROCESS
The method name of
process(Writable). |
| Constructor and Description |
|---|
Rendezvous() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
begin()
Begins processing an input group.
|
abstract void |
end()
Ends processing the current input group.
|
abstract void |
process(V value)
Processes an input data.
|
public static final String BEGIN
begin().public static final String PROCESS
process(Writable).public static final String END
end().public abstract void begin()
public abstract void process(V value)
begin() and end(),
and the input data must be a member of the current group.value - the input datapublic abstract void end()
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.