Exemplo n.º 1
0
 /**
  * Closes the remote side of the given stream. If this causes the stream to be closed, adds a hook
  * to close the channel after the given future completes.
  *
  * @param stream the stream to be half closed.
  * @param future If closing, the future after which to close the channel.
  */
 @Override
 public void closeStreamRemote(Http2Stream stream, ChannelFuture future) {
   switch (stream.state()) {
     case HALF_CLOSED_REMOTE:
     case OPEN:
       stream.closeRemoteSide();
       break;
     default:
       closeStream(stream, future);
       break;
   }
 }
Exemplo n.º 2
0
 /**
  * Closes the local side of the given stream. If this causes the stream to be closed, adds a hook
  * to close the channel after the given future completes.
  *
  * @param stream the stream to be half closed.
  * @param future If closing, the future after which to close the channel.
  */
 @Override
 public void closeStreamLocal(Http2Stream stream, ChannelFuture future) {
   switch (stream.state()) {
     case HALF_CLOSED_LOCAL:
     case OPEN:
       stream.closeLocalSide();
       break;
     default:
       closeStream(stream, future);
       break;
   }
 }