中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#多進程與WebSocket的實時通信

發布時間:2024-09-13 18:21:14 來源:億速云 閱讀:108 作者:小樊 欄目:編程語言

在C#中,可以使用多進程和WebSocket技術來實現實時通信。這里是一個簡單的示例,展示了如何在C#中使用多進程和WebSocket實現實時通信。

首先,我們需要創建一個WebSocket服務器。我們可以使用System.Net.WebSockets命名空間中的HttpListener類來實現一個簡單的WebSocket服務器。以下是一個簡單的WebSocket服務器示例:

using System;
using System.Net;
using System.Net.WebSockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace WebSocketServer
{
    class Program
    {
        static async Task Main(string[] args)
        {
            var server = new HttpListener();
            server.Prefixes.Add("http://localhost:8080/");
            server.Start();

            while (true)
            {
                var context = await server.GetContextAsync();
                if (context.Request.IsWebSocketRequest)
                {
                    ProcessWebSocketRequest(context);
                }
            }
        }

        private static async void ProcessWebSocketRequest(HttpListenerContext context)
        {
            var webSocketContext = await context.AcceptWebSocketAsync(null);
            var webSocket = webSocketContext.WebSocket;

            var buffer = new byte[1024 * 4];
            var result = await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), CancellationToken.None);

            while (!result.CloseStatus.HasValue)
            {
                var message = Encoding.UTF8.GetString(buffer, 0, result.Count);
                Console.WriteLine($"Received message: {message}");

                // Echo the message back to the client
                var echoMessage = Encoding.UTF8.GetBytes("Server received: " + message);
                await webSocket.SendAsync(new ArraySegment<byte>(echoMessage), WebSocketMessageType.Text, true, CancellationToken.None);

                result = await webSocket.ReceiveAsync(new ArraySegment<byte>(buffer), CancellationToken.None);
            }

            await webSocket.CloseAsync(result.CloseStatus.Value, result.CloseStatusDescription, CancellationToken.None);
        }
    }
}

接下來,我們需要創建一個客戶端應用程序,該應用程序將連接到WebSocket服務器并發送和接收消息。以下是一個簡單的客戶端示例:

using System;
using System.Net.WebSockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace WebSocketClient
{
    class Program
    {
        static async Task Main(string[] args)
        {
            var client = new ClientWebSocket();
            await client.ConnectAsync(new Uri("ws://localhost:8080"), CancellationToken.None);

            Console.WriteLine("Connected to server. Type 'exit' to quit.");

            var sendTask = Task.Run(async () =>
            {
                while (true)
                {
                    var message = Console.ReadLine();
                    if (message == "exit")
                    {
                        break;
                    }

                    var bytes = Encoding.UTF8.GetBytes(message);
                    await client.SendAsync(new ArraySegment<byte>(bytes), WebSocketMessageType.Text, true, CancellationToken.None);
                }
            });

            var receiveTask = Task.Run(async () =>
            {
                var buffer = new byte[1024 * 4];
                var result = await client.ReceiveAsync(new ArraySegment<byte>(buffer), CancellationToken.None);

                while (!result.CloseStatus.HasValue)
                {
                    var receivedMessage = Encoding.UTF8.GetString(buffer, 0, result.Count);
                    Console.WriteLine($"Server: {receivedMessage}");

                    result = await client.ReceiveAsync(new ArraySegment<byte>(buffer), CancellationToken.None);
                }
            });

            await Task.WhenAll(sendTask, receiveTask);

            await client.CloseAsync(WebSocketCloseStatus.NormalClosure, "Client closed", CancellationToken.None);
        }
    }
}

現在,你可以運行WebSocket服務器和客戶端應用程序。當客戶端連接到服務器時,它們可以實時發送和接收消息。

為了實現多進程通信,你可以使用System.Diagnostics.Process類來創建和管理子進程。以下是一個簡單的示例,展示了如何在C#中使用多進程和WebSocket實現實時通信:

using System;
using System.Diagnostics;
using System.Net.WebSockets;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace MultiProcessWebSocketCommunication
{
    class Program
    {
        static async Task Main(string[] args)
        {
            // Start the WebSocket server process
            var serverProcess = new Process
            {
                StartInfo = new ProcessStartInfo
                {
                    FileName = "dotnet",
                    Arguments = "WebSocketServer.dll",
                    UseShellExecute = false,
                    RedirectStandardOutput = true,
                    CreateNoWindow = true
                }
            };
            serverProcess.Start();

            // Wait for the server to start
            await Task.Delay(1000);

            // Start the WebSocket client process
            var clientProcess = new Process
            {
                StartInfo = new ProcessStartInfo
                {
                    FileName = "dotnet",
                    Arguments = "WebSocketClient.dll",
                    UseShellExecute = false,
                    RedirectStandardOutput = true,
                    CreateNoWindow = true
                }
            };
            clientProcess.Start();

            // Wait for the client to connect and communicate with the server
            await Task.Delay(5000);

            // Shut down the server and client processes
            serverProcess.Kill();
            clientProcess.Kill();
        }
    }
}

這個示例中,我們首先啟動WebSocket服務器進程,然后等待一段時間以確保服務器已經啟動。接下來,我們啟動WebSocket客戶端進程。最后,我們等待一段時間以讓客戶端與服務器進行通信,然后關閉這兩個進程。

請注意,這個示例僅用于演示目的。在實際應用中,你可能需要根據你的需求對其進行修改和優化。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉义县| 高尔夫| 星座| 镇坪县| 嘉义市| 洛浦县| 甘孜县| 南昌县| 蓬溪县| 安泽县| 南陵县| 日土县| 灌南县| 汉川市| 马龙县| 罗城| 博野县| 建平县| 内黄县| 六枝特区| 宜宾县| 河南省| 丽水市| 南涧| 博湖县| 临沧市| 登封市| 嘉兴市| 鄂托克前旗| 贞丰县| 宁阳县| 手机| 合川市| 和顺县| 乃东县| 当涂县| 德钦县| 清流县| 革吉县| 辛集市| 长宁区|