Example usage for org.springframework.integration.file.tail ApacheCommonsFileTailingMessageProducer ApacheCommonsFileTailingMessageProducer

List of usage examples for org.springframework.integration.file.tail ApacheCommonsFileTailingMessageProducer ApacheCommonsFileTailingMessageProducer

Introduction

In this page you can find the example usage for org.springframework.integration.file.tail ApacheCommonsFileTailingMessageProducer ApacheCommonsFileTailingMessageProducer.

Prototype

ApacheCommonsFileTailingMessageProducer

Source Link

Usage

From source file:org.springframework.integration.file.tail.FileTailingMessageProducerTests.java

@Test
public void testApache() throws Exception {
    ApacheCommonsFileTailingMessageProducer adapter = new ApacheCommonsFileTailingMessageProducer();
    adapter.setPollingDelay(100);//  w w  w. jav a  2 s.c o m
    adapter.setEnd(false);
    testGuts(adapter, "tailer");
}