コード例 #1
0
 /**
  * Simple aggregate {@link ExecutionContext} provider for the contributions registered under the
  * given key.
  *
  * @see org.springframework.batch.item.ItemStream#update(ExecutionContext)
  */
 public void update(ExecutionContext executionContext) {
   for (ItemStream itemStream : streams) {
     itemStream.update(executionContext);
   }
 }