(int streamId, int lastStreamId, long errorCode)
| 894 | |
| 895 | |
| 896 | void sendGoaway(int streamId, int lastStreamId, long errorCode) throws IOException { |
| 897 | byte[] goawayFrame = buildGoaway(streamId, lastStreamId, errorCode); |
| 898 | os.write(goawayFrame); |
| 899 | os.flush(); |
| 900 | } |
| 901 | |
| 902 | |
| 903 | void sendWindowUpdate(int streamId, int increment) throws IOException { |
no test coverage detected