Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed Mar 4, 2016
1 parent 6b625db commit b9bf970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elastic-job-doc/content/post/user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class MyElasticJob extends AbstractIndividualSequenceDataFlowElasticJob<F
```

### 批量处理
为了提高数据处理效率,数据流类型作业提供了批量处理数据的功能。之前逐条处理数据的两个抽象类分别是`AbstractIndividualSequenceDataFlowElasticJob``AbstractIndividualSequenceDataFlowElasticJob`,批量处理则使用另外两个接口`AbstractBatchSequenceDataFlowElasticJob``AbstractBatchSequenceDataFlowElasticJob`。不同之处在于`processData`方法的返回值从`boolean`类型变为`int`类型,用于表示一批数据处理的成功数量,第二个入参则转变为`List`数据集合。
为了提高数据处理效率,数据流类型作业提供了批量处理数据的功能。之前逐条处理数据的两个抽象类分别是`AbstractIndividualThroughputDataFlowElasticJob``AbstractIndividualSequenceDataFlowElasticJob`,批量处理则使用另外两个接口`AbstractBatchThroughputDataFlowElasticJob``AbstractBatchSequenceDataFlowElasticJob`。不同之处在于`processData`方法的返回值从`boolean`类型变为`int`类型,用于表示一批数据处理的成功数量,第二个入参则转变为`List`数据集合。

### 异常处理

Expand Down

0 comments on commit b9bf970

Please sign in to comment.