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

org.yamcs.replication.ReplicationTail Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.replication;

import java.nio.ByteBuffer;

public class ReplicationTail {
    ByteBuffer buf;
   
    boolean eof;//end of file
    public long nextTxId;
    
    @Override
    public String toString() {
        return "ReplicationTail [buf.pos=" + buf.position()+", buf.limit="+buf.limit() + ", eof=" + eof + ", nextTxId=" + nextTxId + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy