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

com.redislabs.riot.db.DatabaseImportOptions Maven / Gradle / Ivy

The newest version!
package com.redislabs.riot.db;

import lombok.Data;
import picocli.CommandLine;

@Data
public class DatabaseImportOptions {

    @CommandLine.Option(names = "--fetch", description = "Number of rows to return with each fetch.", paramLabel = "")
    private Integer fetchSize;
    @CommandLine.Option(names = "--rows", description = "Max number of rows the ResultSet can contain.", paramLabel = "")
    private Integer maxRows;
    @CommandLine.Option(names = "--query-timeout", description = "The time in milliseconds for the query to timeout.", paramLabel = "")
    private Integer queryTimeout;
    @CommandLine.Option(names = "--shared-connection", description = "Use same connection for cursor and other processing.", hidden = true)
    private boolean useSharedExtendedConnection;
    @CommandLine.Option(names = "--verify", description = "Verify position of result set after row mapper.", hidden = true)
    private boolean verifyCursorPosition;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy