Package org.springframework.integration.file

Examples of org.springframework.integration.file.HeadDirectoryScanner


   *                              of files in a directory.
   */
  public MultiFileQueueMessageSource(int internalQueueCapacity) {
    this(null);
    Assert.isTrue(internalQueueCapacity > 0, "Cannot create a queue with non positive capacity");
    this.setScanner(new HeadDirectoryScanner(internalQueueCapacity));
  }
View Full Code Here


   *                              of files in a directory.
   */
  public FileQueueMessageSource(int internalQueueCapacity) {
    this(null);
    Assert.isTrue(internalQueueCapacity > 0, "Cannot create a queue with non positive capacity");
    this.setScanner(new HeadDirectoryScanner(internalQueueCapacity));
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.file.HeadDirectoryScanner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.