Skip to content

Commit

Permalink
Add comment for StagedTaskDescriptor.java
Browse files Browse the repository at this point in the history
  • Loading branch information
majin.nathan committed Oct 11, 2024
1 parent 8f3c119 commit 15898d3
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@

import java.util.Map;

/**
* StagedTaskDescriptor is a descriptor for a task which contains input, output and summary.
* StagedTask could contain many stages, such as rewrite, plan, evaluate, commit, etc.
* Or just a single running stage of {@link org.apache.amoro.process.TableProcess}
* @param <I>
* @param <O>
* @param <S>
*/
public abstract class StagedTaskDescriptor<I, O, S> {

protected long tableId;
Expand Down

0 comments on commit 15898d3

Please sign in to comment.