Example usage for org.springframework.batch.core.step.tasklet Tasklet interface-usage

List of usage examples for org.springframework.batch.core.step.tasklet Tasklet interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.step.tasklet Tasklet interface-usage.

Usage

From source file info.smartkit.hairy_batman.jobs.TaskParseWxOpenId.java

/**
 * TODO: DOCUMENT ME!
 * 
 * @author yangboz
 */
public class TaskParseWxOpenId implements Tasklet {

From source file org.sbq.batch.tasks.CalculateOnlineMetricsTask.java

/**
 * @author ilya40umov
 */
public class CalculateOnlineMetricsTask implements Tasklet {
    @Autowired
    private MetricsService metricsService;

From source file de.langmi.spring.batch.examples.playground.tasklet.interstepcommunication.ReadingJobExecutionContextTasklet.java

/**
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 */
public class ReadingJobExecutionContextTasklet implements Tasklet {

From source file cn.cuizuoli.appranking.batch.tasklet.EodTasklet.java

/**
 * EodTasklet
 * @author cuizuoli
 */
public class EodTasklet implements Tasklet {

From source file org.sbq.batch.tasks.CalculateEventMetricsTask.java

/**
 * @author ilya40umov
 */
public class CalculateEventMetricsTask implements Tasklet {
    @Autowired
    private MetricsService metricsService;

From source file de.langmi.spring.batch.examples.complex.crosscutting.interstepcommunication.promotion.ChangingStepExecutionContextTasklet.java

/**
 * Tasklet which accesses the (Step){@link ExecutionContext} directly to 
 * set a value for a future step.
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 * @see http://stackoverflow.com/questions/8117060/spring-batch-storing-in-jobexecutioncontext-from-tasklet-and-accessing-in-anot

From source file de.langmi.spring.batch.examples.complex.crosscutting.interstepcommunication.jobcontext.ChangingJobExecutionContextTasklet.java

/**
 * Tasklet which accesses the (Job){@link ExecutionContext} directly to 
 * set a value for a future step.
 *
 * @author Michael R. Lange <michael.r.lange@langmi.de>
 * @see http://stackoverflow.com/questions/8117060/spring-batch-storing-in-jobexecutioncontext-from-tasklet-and-accessing-in-anot

From source file org.springframework.yarn.batch.partition.PrintTasklet.java

public class PrintTasklet implements Tasklet {

    private static final Log log = LogFactory.getLog(PrintTasklet.class);

    private String message;

From source file com.dalamar.schedule.ScheduleTasklet.java

/**
 *
 * @author Dimitar
 */

public class ScheduleTasklet implements Tasklet {

From source file org.springframework.yarn.examples.PrintTasklet.java

/**
 * Example tasklet.
 *
 * @author Janne Valkealahti
 *
 */