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

org.restheart.graphql.models.DataLoaderSettings Maven / Gradle / Ivy

There is a newer version: 8.3.0
Show newest version
/*-
 * ========================LICENSE_START=================================
 * restheart-graphql
 * %%
 * Copyright (C) 2020 - 2024 SoftInstigate
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see .
 * =========================LICENSE_END==================================
 */
package org.restheart.graphql.models;

public class DataLoaderSettings {

    private final boolean batching;
    private final int maxBatchSize;
    private final boolean caching;
    private final long queryTimeLimit;

    private DataLoaderSettings(Boolean batching, Boolean caching, Integer maxBatchSize, long queryTimeLimit){
        this.batching = batching;
        this.caching = caching;
        this.maxBatchSize = maxBatchSize;
        this.queryTimeLimit = queryTimeLimit;
    }

    public static Builder builder(){
        return new Builder();
    }

    public boolean getBatching() {
        return batching;
    }

    public boolean getCaching(){ return  caching;}

    public int getMaxBatchSize() {
        return maxBatchSize;
    }

    public long getQueryTimeLimit() {
        return this.queryTimeLimit;
    }

    public static class Builder{

        private Boolean batching;
        private Boolean caching;
        private Integer max_batch_size;
        private Long queryTimeLimit;

        private Builder(){}

        public Builder batching(Boolean enable){
            this.batching = enable;
            return this;
        }

        public Builder caching(Boolean enable){
            this.caching = enable;
            return this;
        }

        public Builder max_batch_size(Integer size){
            this.max_batch_size = size;
            return this;
        }

        public Builder queryTimeLimit(Long queryTimeLimit){
            this.queryTimeLimit = queryTimeLimit;
            return this;
        }

        public DataLoaderSettings build(){

            if (this.batching == null){
                this.batching = false;
            }

            if (this.caching == null){
                this.caching = false;
            }

            if (this.max_batch_size == null){
                this.max_batch_size = 0;
            }

            if (this.queryTimeLimit == null){
                this.queryTimeLimit = 0l;
            }

            return new DataLoaderSettings(this.batching, this.caching, this.max_batch_size, this.queryTimeLimit);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy