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

com.alibaba.rocketmq.broker.transaction.TransactionRecord Maven / Gradle / Ivy

The newest version!
package com.alibaba.rocketmq.broker.transaction;

public class TransactionRecord {
    // Commit Log Offset
    private long offset;
    private String producerGroup;


    public long getOffset() {
        return offset;
    }


    public void setOffset(long offset) {
        this.offset = offset;
    }


    public String getProducerGroup() {
        return producerGroup;
    }


    public void setProducerGroup(String producerGroup) {
        this.producerGroup = producerGroup;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy