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

io.nosqlbench.driver.pulsar.ops.PulsarAdminOp Maven / Gradle / Ivy

Go to download

A Pulsar driver for nosqlbench. This provides the ability to inject synthetic data into a pulsar system.

There is a newer version: 4.15.102
Show newest version
package io.nosqlbench.driver.pulsar.ops;

import io.nosqlbench.driver.pulsar.PulsarSpace;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

public abstract class PulsarAdminOp extends SyncPulsarOp {

    private final static Logger logger = LogManager.getLogger(PulsarAdminOp.class);

    protected final PulsarSpace clientSpace;
    protected final boolean asyncApi;
    protected final boolean adminDelOp;

    protected PulsarAdminOp(PulsarSpace clientSpace,
                         boolean asyncApi,
                         boolean adminDelOp)
    {
        this.clientSpace = clientSpace;
        this.asyncApi = asyncApi;
        this.adminDelOp = adminDelOp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy