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

com.github.hackerwin7.mysql.tracker.kafka.utils.KafkaMetaMsg Maven / Gradle / Ivy

The newest version!
package com.github.hackerwin7.mysql.tracker.kafka.utils;

/**
 * Created by hp on 14-12-12.
 */
public class KafkaMetaMsg {

    public byte[] msg;
    public long offset;

    public KafkaMetaMsg(byte[] bytes, long pos) {
        msg = bytes;
        offset = pos;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy