Examples of DropboxScheduledPollSearchConsumer


Examples of org.apache.camel.component.dropbox.integration.consumer.DropboxScheduledPollSearchConsumer

    public Consumer createConsumer(Processor processor) throws Exception {
        LOG.debug("resolve consumer dropbox endpoint {" + configuration.getOperation().toString() + "}");
        LOG.debug("resolve consumer dropbox attached client:" + configuration.getClient());
        DropboxScheduledPollConsumer consumer = null;
        if (this.configuration.getOperation() == DropboxOperation.search) {
            consumer = new DropboxScheduledPollSearchConsumer(this, processor, configuration);
            consumer.setDelay(POLL_CONSUMER_DELAY);
            return consumer;
        } else if (this.configuration.getOperation() == DropboxOperation.get) {
            consumer = new DropboxScheduledPollGetConsumer(this, processor, configuration);
            consumer.setDelay(POLL_CONSUMER_DELAY);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.