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

com.tidb.snapshot.Ticdc Maven / Gradle / Ivy

The newest version!
package com.tidb.snapshot;

import java.util.concurrent.atomic.AtomicLong;

public class Ticdc {

    private AtomicLong globalSecondaryTs = new AtomicLong(0);

    private AtomicLong globallasttime = new AtomicLong(0);

    private AtomicLong name = new AtomicLong(0);


    private String ticdcCFname;

    private String useTicdcACID;



    public AtomicLong getGlobalSecondaryTs() {
        return globalSecondaryTs;
    }

    public void setGlobalSecondaryTs(AtomicLong globalSecondaryTs) {
        this.globalSecondaryTs = globalSecondaryTs;
    }

    public AtomicLong getGloballasttime() {
        return globallasttime;
    }

    public void setGloballasttime(AtomicLong globallasttime) {
        this.globallasttime = globallasttime;
    }


    public AtomicLong getName() {
        return name;
    }

    public void setName(AtomicLong name) {
        this.name = name;
    }


    public String getTicdcCFname() {
        return ticdcCFname;
    }

    public void setTicdcCFname(String ticdcCFname) {
        this.ticdcCFname = ticdcCFname;
    }

    public String getUseTicdcACID() {
        return useTicdcACID;
    }

    public void setUseTicdcACID(String useTicdcACID) {
        this.useTicdcACID = useTicdcACID;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy