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

com.bazaarvoice.emodb.sor.db.HistoryMigrationScanResult Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.sor.db;

import java.nio.ByteBuffer;
import java.util.UUID;

public class HistoryMigrationScanResult extends MigrationScanResult {
    private final int _ttl;

    public HistoryMigrationScanResult(ByteBuffer rowKey, UUID changeId, ByteBuffer value, int ttl) {
        super(rowKey, changeId, value);
        _ttl = ttl;
    }

    public int getTtl() {
        return _ttl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy