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

com.redis.lettucemod.search.aggregate.reducers.AbstractPropertyReducer Maven / Gradle / Ivy

The newest version!
package com.redis.lettucemod.search.aggregate.reducers;

import io.lettuce.core.internal.LettuceAssert;

abstract class AbstractPropertyReducer extends AbstractReducer {

    protected final String property;

    protected AbstractPropertyReducer(String as, String property) {
        super(as);
        this.property = property;
    }

    public static class PropertyReducerBuilder> extends ReducerBuilder {

        protected final String property;

        protected PropertyReducerBuilder(String property) {
            LettuceAssert.notNull(property, "Property is required");
            this.property = property;
        }

    }

}