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

com.fluxtion.server.plugin.rest.service.CommandProcessor Maven / Gradle / Ivy

/*
 * SPDX-FileCopyrightText: © 2024 Gregory Higgins 
 * SPDX-License-Identifier: AGPL-3.0-only
 */

package com.fluxtion.server.plugin.rest.service;

import lombok.Getter;

import java.util.function.Consumer;

public abstract class CommandProcessor {

    @Getter
    private final Class argumentClass;

    protected CommandProcessor(Class argumentClass) {
        this.argumentClass = argumentClass;
    }

    abstract void process(S command, Consumer outputConsumer);
}