INT-3353 Concurrent RedisMetadataStore

JIRA: https://jira.spring.io/browse/INT-3353

Shared metadata for PersistentAcceptOnceFileListFilters.

INT-3353 Polishing; PR Comments
This commit is contained in:
Gary Russell
2014-04-07 17:37:55 +03:00
committed by Artem Bilan
parent 40a535b140
commit 4dee2a224b
21 changed files with 482 additions and 57 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013 the original author or authors.
* Copyright 2013-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,14 +18,13 @@ package org.springframework.integration.sftp.filters;
import org.springframework.integration.file.filters.AbstractPersistentAcceptOnceFileListFilter;
import org.springframework.integration.metadata.MetadataStore;
import org.springframework.integration.metadata.ConcurrentMetadataStore;
import com.jcraft.jsch.ChannelSftp.LsEntry;
/**
* Since the super class deems files as 'not seen' if the timestamp is different, remote file
* users should use the adapter's preserve-timestamp option. Otherwise if a file is re-fetched
* it will have a new timestamp.
* Persistent file list filter using the server's file timestamp to detect if we've already
* 'seen' this file.
*
* @author Gary Russell
* @since 3.0
@@ -33,7 +32,7 @@ import com.jcraft.jsch.ChannelSftp.LsEntry;
*/
public class SftpPersistentAcceptOnceFileListFilter extends AbstractPersistentAcceptOnceFileListFilter<LsEntry> {
public SftpPersistentAcceptOnceFileListFilter(MetadataStore store, String prefix) {
public SftpPersistentAcceptOnceFileListFilter(ConcurrentMetadataStore store, String prefix) {
super(store, prefix);
}