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

io.stargate.db.tracing.TracingData Maven / Gradle / Ivy

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

import io.stargate.db.datastore.Row;
import java.util.List;

public class TracingData {
  private final List events;
  private final Row session;

  public TracingData(List events, Row session) {
    this.events = events;
    this.session = session;
  }

  public List getEvents() {
    return events;
  }

  public Row getSessionRow() {
    return session;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy