public DiffContext()

in spark-job/src/main/java/org/apache/cassandra/diff/DiffContext.java [36:52]


    public DiffContext(final DiffCluster source,
                       final DiffCluster target,
                       final String keyspace,
                       final TableSpec table,
                       final BigInteger startToken,
                       final BigInteger endToken,
                       final SpecificTokens specificTokens,
                       final double reverseReadProbability) {
        this.keyspace = keyspace;
        this.table = table;
        this.startToken = startToken;
        this.endToken = endToken;
        this.source = source;
        this.target = target;
        this.specificTokens = specificTokens;
        this.reverseReadProbability = reverseReadProbability;
    }