netty5/microbench
Scott Mitchell 9f422ed0f4 HTTP/2 Flow Controller should use Channel.isWritable()
Motivation:
See #3783

Modifications:
- The DefaultHttp2RemoteFlowController should use Channel.isWritable() before attempting to do any write operations.
- The Flow controller methods should no longer take ChannelHandlerContext. The concept of flow control is tied to a connection and we do not support 1 flow controller keeping track of multiple ChannelHandlerContext.

Result:
Writes are delayed until isWritable() is true. Flow controller interface methods are more clear as to ChannelHandlerContext restrictions.
2015-07-16 14:41:05 -07:00
..
src/main HTTP/2 Flow Controller should use Channel.isWritable() 2015-07-16 14:41:05 -07:00
pom.xml Have microbenchmarks produce a deployable artifact. Fix some minor miscellaneous issues. 2015-04-17 10:03:39 -07:00
README.md Fix wiki link 2014-02-14 12:03:51 -08:00

Microbenchmark tests

See our wiki page.