Mercurial Hosting > luan
annotate src/goodjava/rpc/FixedLengthInputStream.java @ 1630:b735ed134662
add nginx and ssl for host
author | fffilimonov |
---|---|
date | Fri, 10 Dec 2021 17:08:17 +0000 |
parents | 491b355acef7 |
children |
rev | line source |
---|---|
1402
27efb1fcbcb5
move luan.lib to goodjava
Franklin Schmidt <fschmidt@gmail.com>
parents:
1118
diff
changeset
|
1 package goodjava.rpc; |
1118 | 2 |
3 import java.io.InputStream; | |
4 import java.io.IOException; | |
5 import java.io.EOFException; | |
6 | |
7 | |
1490
9a2a2181a58f
FixedLengthInputStream
Franklin Schmidt <fschmidt@gmail.com>
parents:
1402
diff
changeset
|
8 final class FixedLengthInputStream extends goodjava.io.FixedLengthInputStream { |
1118 | 9 |
10 public FixedLengthInputStream(InputStream in,long len) { | |
1490
9a2a2181a58f
FixedLengthInputStream
Franklin Schmidt <fschmidt@gmail.com>
parents:
1402
diff
changeset
|
11 super(in,len); |
1118 | 12 } |
13 | |
14 public void close() throws IOException { | |
15 while( left > 0 ) { | |
16 if( skip(left) == 0 ) | |
17 throw new EOFException(); | |
18 } | |
19 } | |
20 | |
21 } |