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

io.reactivex.mantis.remote.observable.ServeConfig Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
/*
 * Copyright 2019 Netflix, Inc.
 *
 * 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 io.reactivex.mantis.remote.observable;

import io.reactivex.mantis.remote.observable.slotting.SlottingStrategy;
import java.util.Map;
import rx.functions.Func1;


public abstract class ServeConfig {

    SlottingStrategy slottingStrategy;
    private String name;
    private Func1, Func1> filterFunction;
    private int maxWriteAttempts;

    public ServeConfig(String name,
                       SlottingStrategy slottingStrategy, Func1,
            Func1> filterFunction, int maxWriteAttempts) {
        this.name = name;
        this.slottingStrategy = slottingStrategy;
        this.filterFunction = filterFunction;
        this.maxWriteAttempts = maxWriteAttempts;
    }

    public int getMaxWriteAttempts() {
        return maxWriteAttempts;
    }

    public String getName() {
        return name;
    }

    public SlottingStrategy getSlottingStrategy() {
        return slottingStrategy;
    }

    public Func1, Func1> getFilterFunction() {
        return filterFunction;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy