Ejemplo n.º 1
0
 @Override
 public void halfClose() {
   Preconditions.checkState(stream != null, "Not started");
   Preconditions.checkState(!cancelCalled, "call was cancelled");
   Preconditions.checkState(!halfCloseCalled, "call already half-closed");
   halfCloseCalled = true;
   stream.halfClose();
 }