public static Content content(int code, java.io.InputStream content) {
return content(code, new ChunkBuffer().append(Chunk.create(content)).close());
}
public static Content content(int code, Readable content) {
return content(code, new ChunkBuffer().append(Chunk.create(content)).close());
}