当前位置: 首页>>代码示例>>Java>>正文


Java ExecutionContext.entrySet方法代码示例

本文整理汇总了Java中org.springframework.batch.item.ExecutionContext.entrySet方法的典型用法代码示例。如果您正苦于以下问题:Java ExecutionContext.entrySet方法的具体用法?Java ExecutionContext.entrySet怎么用?Java ExecutionContext.entrySet使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.batch.item.ExecutionContext的用法示例。


在下文中一共展示了ExecutionContext.entrySet方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: update

import org.springframework.batch.item.ExecutionContext; //导入方法依赖的package包/类
@Override
public void update(ExecutionContext executionContext) throws
        ItemStreamException {

    /* Clear context */
    for (Entry<String, Object> entry : executionContext.entrySet()) {
        String key = entry.getKey();
        executionContext.remove(key);
    }

    executionContext.putInt(IDS_NUMBER, number);
    executionContext.putInt(CURRENT_ID_COUNT, count);

    for (int i = 0; i < number; i++) {
        executionContext.putString(LIST_ID + i, ids[i]);
    }
}
 
开发者ID:hosuaby,项目名称:signature-processing,代码行数:18,代码来源:ListIdsItemReader.java

示例2: AdaptedExecutionContext

import org.springframework.batch.item.ExecutionContext; //导入方法依赖的package包/类
public AdaptedExecutionContext(ExecutionContext exeContext) throws InstantiationException, IllegalAccessException {
    this.hashCode = exeContext.hashCode();
    this.dirtyFlag = exeContext.isDirty();

    // Get a set of the entries
    Set<Entry<String, Object>> set = exeContext.entrySet();
    // Get an iterator
    Iterator<Entry<String, Object>> i = set.iterator();
    // Display elements
    while (i.hasNext()) {
        Entry<String, Object> me = i.next();
        String name = me.getKey();
        Object obj = getValue(me.getValue());
        map.put(name, obj);
    }
}
 
开发者ID:marklogic-community,项目名称:marklogic-spring-batch,代码行数:17,代码来源:AdaptedExecutionContext.java


注:本文中的org.springframework.batch.item.ExecutionContext.entrySet方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。