Package org.apache.synapse.transport.vfs

Examples of org.apache.synapse.transport.vfs.PollTableEntry


    public static long getMinPollTime(List pollTable) {
        Iterator iter = pollTable.iterator();
        long min = AbstractPollingTransportListener.DEFAULT_POLL_INTERVAL;

        while (iter.hasNext()) {
            PollTableEntry entry = (PollTableEntry) iter.next();
            if (entry.getPollInterval() < min) {
                min = entry.getPollInterval();
            }
        }
        return min;
    }
View Full Code Here


    public static long getMinPollTime(List pollTable) {
        Iterator iter = pollTable.iterator();
        long min = AbstractPollingTransportListener.DEFAULT_POLL_INTERVAL;

        while (iter.hasNext()) {
            PollTableEntry entry = (PollTableEntry) iter.next();
            if (entry.getPollInterval() < min) {
                min = entry.getPollInterval();
            }
        }
        return min;
    }
View Full Code Here

TOP

Related Classes of org.apache.synapse.transport.vfs.PollTableEntry

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.