Tagged Questions
11
votes
6answers
8k views
.NET Asynchronous stream read/write
I have been trying to solve this "Concurrent Programming" exam exercise (in C#):
Knowing that Stream class contains int Read(byte[] buffer, int offset, int size) and void Write(byte[] buffer, int ...
4
votes
2answers
195 views
Can starting multiple asyncronous read/write operations on the same Stream corrupt the data?
I'm using asynchronous I/O because it does not block the calling thread and does the threading stuff behind the scenes. If I invoke multiple async operations like BeginWrite()'s on the same Stream, ...
0
votes
0answers
27 views
Asynchronous Procedure Calls Definition?
What is an asynchronous procedure call? Explain how asynchronous procedure calls can be implemented in java?
Im not sure if my answer to this question is correct?
My answer:
Asynchronous Procedure ...