mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
17 lines
332 B
Java
17 lines
332 B
Java
package org.briarproject.api.sync;
|
|
|
|
/** A packet acknowledging a (@link RetentionUpdate} */
|
|
public class RetentionAck {
|
|
|
|
private final long version;
|
|
|
|
public RetentionAck(long version) {
|
|
this.version = version;
|
|
}
|
|
|
|
/** Returns the version number of the acknowledged update. */
|
|
public long getVersion() {
|
|
return version;
|
|
}
|
|
}
|