All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.usergrid.count.ScheduledBatcher Maven / Gradle / Ivy

There is a newer version: 0.0.27.1
Show newest version
/*******************************************************************************
 * Copyright 2012 Apigee Corporation
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/
package com.usergrid.count;

import java.util.concurrent.atomic.AtomicLong;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Invokes {@link BatchSubmitter#submit(com.usergrid.count.AbstractBatcher.Batch)}
 * every batchInterval seconds.
 *
 * @author zznate
 */
public class ScheduledBatcher extends AbstractBatcher {

    private static final Logger logger = LoggerFactory.getLogger(ScheduledBatcher.class);
    private int batchInterval;
    private long currentMillis;
    private AtomicLong batchSubmissionCount = new AtomicLong();

    /**
     * Initializes the scheduledExecutor with the interval (in seconds) at which this executor will fire
     * @param batchInterval
     */
    public ScheduledBatcher(int queueSize, int batchInterval) {
        super(queueSize);
        this.batchInterval = batchInterval;
        this.currentMillis = System.currentTimeMillis();
    }

    protected boolean shouldSubmit(Batch batch) {
      long now = System.currentTimeMillis();
      return (now > ((1000 * batchInterval) + currentMillis));
    }

    protected void submit(Batch batch) {
        currentMillis = System.currentTimeMillis();
        
        logger.info("Submitting batch counter payload. Resetting now to: {}", currentMillis);
        
        batchSubmitter.submit(batch);
        batchSubmissionCount.incrementAndGet();
    }

    public long getBatchSubmissionCount() {
        return batchSubmissionCount.get();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy