1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.spdy.client;
17
18 import io.netty.channel.ChannelHandlerContext;
19 import io.netty.channel.ChannelOutboundHandlerAdapter;
20 import io.netty.channel.ChannelPromise;
21 import io.netty.handler.codec.http.HttpMessage;
22 import io.netty.handler.codec.spdy.SpdyHttpHeaders;
23
24
25
26
27 public class SpdyClientStreamIdHandler extends ChannelOutboundHandlerAdapter {
28
29 private int currentStreamId = 1;
30
31 public boolean acceptOutboundMessage(Object msg) {
32 return msg instanceof HttpMessage;
33 }
34
35 @Override
36 public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) {
37 if (acceptOutboundMessage(msg)) {
38 HttpMessage httpMsg = (HttpMessage) msg;
39 if (!httpMsg.headers().contains(SpdyHttpHeaders.Names.STREAM_ID)) {
40 SpdyHttpHeaders.setStreamId(httpMsg, currentStreamId);
41
42 currentStreamId += 2;
43 }
44 }
45 ctx.write(msg, promise);
46 }
47 }