Example usage for org.springframework.integration.ftp.inbound FtpInboundFileSynchronizingMessageSource FtpInboundFileSynchronizingMessageSource

List of usage examples for org.springframework.integration.ftp.inbound FtpInboundFileSynchronizingMessageSource FtpInboundFileSynchronizingMessageSource

Introduction

In this page you can find the example usage for org.springframework.integration.ftp.inbound FtpInboundFileSynchronizingMessageSource FtpInboundFileSynchronizingMessageSource.

Prototype

public FtpInboundFileSynchronizingMessageSource(AbstractInboundFileSynchronizer<FTPFile> synchronizer,
            Comparator<File> comparator) 

Source Link

Usage

From source file:org.springframework.integration.dsl.ftp.FtpInboundChannelAdapterSpec.java

FtpInboundChannelAdapterSpec(SessionFactory<FTPFile> sessionFactory, Comparator<File> comparator) {
    super(new FtpInboundFileSynchronizer(sessionFactory));
    this.target = new FtpInboundFileSynchronizingMessageSource(this.synchronizer, comparator);
}