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

io.pythagoras.common.aggregationqueue.AggregationQueueProperties Maven / Gradle / Ivy

The newest version!
package io.pythagoras.common.aggregationqueue;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(value = "io.pythagoras.aggregationqueue")
public class AggregationQueueProperties {

    private int offset = 1800;

    public int getOffset() {
        return offset;
    }

    public void setOffset(int offset) {
        this.offset = offset;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy