
com.ociweb.pronghorn.util.NullAppendable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pronghorn-pipes Show documentation
Show all versions of pronghorn-pipes Show documentation
Ring buffer based queuing utility for applications that require high performance and/or a small
footprint. Well suited for embedded and stream based processing.
The newest version!
package com.ociweb.pronghorn.util;
import java.io.IOException;
public class NullAppendable implements Appendable {
@Override
public Appendable append(CharSequence csq) throws IOException {
//do nothing
return this;
}
@Override
public Appendable append(CharSequence csq, int start, int end) throws IOException {
//do nothing
return this;
}
@Override
public Appendable append(char c) throws IOException {
//do nothing
return this;
}
}