You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i'm using SocketIoClientDotNet for .Net 4.0 and i have some problems. This example code make thread leak. the thread is more and more,and follow the source code,I find the method run in Heartbeat_net35.cs is not release thread,and now I Comment this method,it is work well,but i don't know this will have any problem,my code is here
`public void Connect()
{
socket = IO.Socket(GlobalStatic.PRINTCONFIG.HeartHOST.host, new IO.Options()
{
Reconnection = true,
ReconnectionDelay = 1000,
Transports = new List() { "websocket" },
Path = GlobalStatic.PRINTCONFIG.HeartHOST.path
});
Hi, i'm using SocketIoClientDotNet for .Net 4.0 and i have some problems. This example code make thread leak. the thread is more and more,and follow the source code,I find the method run in Heartbeat_net35.cs is not release thread,and now I Comment this method,it is work well,but i don't know this will have any problem,my code is here
`public void Connect()
{
socket = IO.Socket(GlobalStatic.PRINTCONFIG.HeartHOST.host, new IO.Options()
{
Reconnection = true,
ReconnectionDelay = 1000,
Transports = new List() { "websocket" },
Path = GlobalStatic.PRINTCONFIG.HeartHOST.path
});
`
The text was updated successfully, but these errors were encountered: