(Channel channel)
| 53 | private final AtomicBoolean scheduled = new AtomicBoolean(); |
| 54 | |
| 55 | public WriteQueue(Channel channel) { |
| 56 | this.channel = Preconditions.checkNotNull(channel, "channel"); |
| 57 | queue = new ConcurrentLinkedQueue<>(); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Schedule a flush on the channel. |
nothing calls this directly
no test coverage detected