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

com.redis.riot.gen.GeneratorOptions Maven / Gradle / Ivy

There is a newer version: 2.19.0
Show newest version
package com.redis.riot.gen;

import java.util.Optional;

import com.redis.riot.ProgressMonitor.Builder;

import picocli.CommandLine.Option;

public class GeneratorOptions {

	@Option(names = "--start", description = "Start index (default: ${DEFAULT-VALUE})", paramLabel = "")
	protected int start = 1;
	@Option(names = "--count", description = "Number of items to generate (default: ${DEFAULT-VALUE})", paramLabel = "")
	protected int count = 1000;
	@Option(names = "--sleep", description = "Duration in ms to sleep before each item generation (default: ${DEFAULT-VALUE})", paramLabel = "")
	private Optional sleep = Optional.empty();

	public int getStart() {
		return start;
	}

	public void setStart(int start) {
		this.start = start;
	}

	public int getCount() {
		return count;
	}

	public void setCount(int count) {
		this.count = count;
	}

	public Optional getSleep() {
		return sleep;
	}

	public void setSleep(long sleep) {
		this.sleep = Optional.of(sleep);
	}

	public Builder configure(Builder monitor) {
		return monitor.initialMax(() -> (long) count);
	}

	@Override
	public String toString() {
		return "GeneratorOptions [start=" + start + ", count=" + count + ", sleep=" + sleep + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy