added readLine featute to jvm input

This commit is contained in:
Roberta Giordano
2013-06-01 19:42:11 +02:00
parent f5fec0ab71
commit bae3bc096f
2 changed files with 22 additions and 0 deletions
+1
View File
@@ -8,6 +8,7 @@ public class uwsgi {
public static class RequestBody extends InputStream {
public native int read();
public native int read(byte[] b);
public native int readLine(byte[] b);
public native int available();
}