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

com.alibaba.rocketmq.common.protocol.body.ResetOffsetBodyForC Maven / Gradle / Ivy

package com.alibaba.rocketmq.common.protocol.body;

import java.util.List;

import com.alibaba.rocketmq.common.message.MessageQueueForC;
import com.alibaba.rocketmq.remoting.protocol.RemotingSerializable;


/**
 * @auther lansheng.zj
 */
public class ResetOffsetBodyForC extends RemotingSerializable {

    private List offsetTable;


    public List getOffsetTable() {
        return offsetTable;
    }


    public void setOffsetTable(List offsetTable) {
        this.offsetTable = offsetTable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy