You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Command
public StreamingOutput list() {
return new StreamingOutput() {
@Override
public void write(OutputStream os) throws IOException {
final PrintStream printStream = new PrintStream(os);
// use the printStream
}
};
}
For backwards compatibility we should add a new interface PrintingOutput
Getting quite tiresome to always do:
For backwards compatibility we should add a new interface
PrintingOutput
The text was updated successfully, but these errors were encountered: