Search Results

0
votes
4answers
323 views

How do you close TCP connections gracefully without exceptions?

What is the pattern and/or how would you change the following code so that a connection can be closed gracefully from either server or client, without needing exception handling. …
3
votes
2answers
211 views

.NET zlib Stream compatible with Actionscript ByteArray.uncompress

I can't seem to get a stream that Flex 3 want's to decompress. I've tried: System.IO.Compression.GZipStream System.IO.Compression.DeflateStream ICSharpCode.S …
0
votes

Wait for pooled threads to complete.

Using .NET 4.0 Barrier class: Barrier sync = new Barrier(1); …
1
vote

Best C# solution for multithreaded threadsafe read/write locking?

Small Values For small values (basically any field that can be declared volatile), you can do the following: private static volatile int backingField; public static int F …
0
votes

How do you close TCP connections gracefully without exceptions?

I modified my code for Channel to use Socket.Shutdown and to use asynchronous reads. This seems to be the minimum required. Basically graceful shutdown looks like this: …