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

io.stargate.db.Batch Maven / Gradle / Ivy

There is a newer version: 2.1.0-BETA-19
Show newest version
package io.stargate.db;

import java.util.List;

public class Batch {
  private final BatchType type;
  private final List statements;

  public Batch(BatchType type, List statements) {
    this.type = type;
    this.statements = statements;
  }

  public BatchType type() {
    return type;
  }

  public List statements() {
    return statements;
  }

  public int size() {
    return statements.size();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy