I'm encrypting data in chunks. I'm passing each chunk of data to a Task like yay:
private static Task<string> EncryptChunk( byte[] buffer, CryptoEngine c )
{
var tcs = new TaskCompletionSource<string>();
Task.Factory.StartNew( () =>
{
tcs.SetResult( c.Encrypt( buffer ) );
} );
return tcs.Task;
}
As I debug in the code that calls this method I can see that it's passing proper chunks as the buffer parameter. If I set a breakpoint inside StartNew above, however, I see that the buffer is always the last buffer encountered by the main thread.
What am I doing wrong?
buffer. – Jason Aug 23 '11 at 23:11EncryptChunkcall get passed a differentbyte[]or are they all being passed the same array reference? – cdhowie Aug 23 '11 at 23:12return Task.Factory.StartNew(() => c.Encrypt(buffer));and do away with theTaskCompletionSourcealtogether? – Cameron Aug 23 '11 at 23:12