use of com.twitter.distributedlog.exceptions.WriteCancelledException in project distributedlog by twitter.
the class EnvelopedEntryWriter method reset.
@Override
public synchronized void reset() {
cancelPromises(new WriteCancelledException(logName, "Record Set is reset"));
count = 0;
this.buffer.reset();
}
Aggregations