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 io.spring.batch.CustomTasklet.java

/**
 * @author Michael Minella
 */
public class CustomTasklet implements Tasklet {

    @Override

From source file io.spring.xd.batch.HelloWorldTasklet.java

/**
 * @author mminella
 */
public class HelloWorldTasklet implements Tasklet {

    private String message;

From source file com.enterra.batch.admin.util.TestTasklet.java

/**
 * @author Dave Syer
 * 
 */
public class TestTasklet implements Tasklet {

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

/**
 * @author ilya40umov
 */
public class LongRunningBatchTask implements Tasklet {
    @Override
    public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception {

From source file org.hoteia.qalingo.app.business.job.email.EmailCleanerTasklet.java

/**
 * 
 */
public class EmailCleanerTasklet implements Tasklet, InitializingBean {

    private final Logger logger = LoggerFactory.getLogger(getClass());

From source file org.hoteia.qalingo.app.business.job.status.ServerStatusCleanerTasklet.java

/**
 * 
 */
public class ServerStatusCleanerTasklet implements Tasklet, InitializingBean {

    private final Logger logger = LoggerFactory.getLogger(getClass());

From source file de.langmi.spring.batch.tutorials.helloworld.HelloWorldTasklet.java

/**
 * This is a Tasklet(step) implementation which prints out a friendly "Hello World!".
 * 
 * In Spring Batch a Taskletstep is a simplified version of a Step,
 * without the chunk-oriented processing.
 *

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

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

From source file prototypes.batches.chunking.tasklet.SimpleTasklet.java

public class SimpleTasklet implements Tasklet {

    private static final Logger LOGGER = LoggerFactory.getLogger(SimpleTasklet.class);

    private String simpleAttribute;

From source file prototypes.batches.listening.tasklet.SimpleTasklet.java

public class SimpleTasklet implements Tasklet {

    private static final Logger LOGGER = LoggerFactory.getLogger(SimpleTasklet.class);

    private String simpleAttribute;