.NET/C# – AnonymousPipeServerStream/AnonymousPipeClientStream不工作

huangapple go评论116阅读模式
英文:

.NET/C# - AnonymousPipeServerStream/AnonymousPipeClientStream not working

问题

我想在AnonymousPipeServerStream和AnonymousPipeClientStream之间交换数据。

这段代码不起作用。它在Join上阻塞。

  1. Console.WriteLine("> " + text2);

从未被调用。

你有任何想法吗?
谢谢。

  1. using (AnonymousPipeServerStream pipeout = new AnonymousPipeServerStream(PipeDirection.Out))
  2. {
  3. using (AnonymousPipeClientStream pipein = new AnonymousPipeClientStream(PipeDirection.In,
  4. pipeout.GetClientHandleAsString()))
  5. {
  6. byte[] res;
  7. Thread t = new Thread(() =>
  8. {
  9. using (MemoryStream x = new MemoryStream())
  10. {
  11. pipein.CopyTo(x);
  12. res = x.ToArray();
  13. string text2 = Encoding.UTF8.GetString(res);
  14. Console.WriteLine("> " + text2);
  15. }
  16. });
  17. t.Start();
  18. string text = "hello !";
  19. using (MemoryStream x = new MemoryStream(Encoding.UTF8.GetBytes(text)))
  20. {
  21. x.CopyTo(pipeout);
  22. }
  23. t.Join();
  24. }
  25. }
英文:

I would like to exchange data between AnonymousPipeServerStream and AnonymousPipeClientStream

This code is not working. It is block on Join.

  1. Console.WriteLine("> " + text2);

is never called

Do you have any idea ?
Thanks

  1. using (AnonymousPipeServerStream pipeout = new AnonymousPipeServerStream(PipeDirection.Out))
  2. {
  3. using (AnonymousPipeClientStream pipein = new AnonymousPipeClientStream(PipeDirection.In,
  4. pipeout.GetClientHandleAsString()))
  5. {
  6. byte[] res;
  7. Thread t = new Thread(() =>
  8. {
  9. using (MemoryStream x = new MemoryStream())
  10. {
  11. pipein.CopyTo(x);
  12. res = x.ToArray();
  13. string text2 = Encoding.UTF8.GetString(res);
  14. Console.WriteLine("> " + text2);
  15. }
  16. });
  17. t.Start();
  18. string text = "hello !";
  19. using (MemoryStream x = new MemoryStream(Encoding.UTF8.GetBytes(text)))
  20. {
  21. x.CopyTo(pipeout);
  22. }
  23. t.Join();
  24. }
  25. }

答案1

得分: 0

你需要关闭出站管道,否则客户端将一直等待更多数据。

  1. pipeout.Close();
  2. t.Join()

或者你可以在等待线程之前关闭using。 (你需要将Thread t;的声明移到using外部)

  1. }
  2. t.Join();

但我不确定为什么你要使用这样的代码。对于进程内通信,最好使用某种线程安全的队列。此外,你应该使用任务而不是线程。

英文:

You need to close the outbound pipe, otherwise the client side will just keep waiting for more data

  1. pipeout.Close();
  2. t.Join()

Alternatively you can close the using before waiting on the thread. (you need to move the declaration of Thread t; outside the using)

  1. }
  2. t.Join();

But I'm not sure why you would want to use such code. For in-process communication it would be wiser to just use some kind of thread-safe queue. Furthermore, you should probably use tasks not threads.

huangapple
  • 本文由 发表于 2023年6月29日 03:28:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/76576183.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定