实现方案:
    发送 RST_STREAM 帧 :

    wrote RST_STREAM stream=9 len=4 ErrCode=CANCEL

    example:

    1. ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    2. defer cancel()
    3. req := &pb.EchoRequest{Message: message}
    4. _, err := c.UnaryEcho(ctx, req)