.NET class correspondent to I/O Completion Port functions

H

Hyun-jik Bae

Is there any .NET class correspondent to I/O Completion Port functions
(GetQueuedCompletionStatus, CreateIoCompletionPort or
BindIoCompletionCallback)? Please reply. Thanks in advance.



Hyun-jik Bae
 
M

Michael D. Ober

There isn't a one to one correspondence. However, most of the IO classes
have "Begin<function>" and "End<function>" methods that handle the Win32 API
completion ports.

Mike Ober.
 
C

Chris Mullins

Hyun-jik Bae said:
Is there any .NET class correspondent to I/O Completion Port functions
(GetQueuedCompletionStatus, CreateIoCompletionPort or
BindIoCompletionCallback)? Please reply. Thanks in advance.

There's nothing out of the box that will do this.

There's a good set of IOCP classes you can find at CodeProject.com. I've
been through these a few times. IT looks like the CodeProject website is
down right now, or I would provide ya a like.

Jeff Richter released his "Power Threading" library a while back. This has a
fully feature set of IOCP classes for your programming pleasure. You can
find this on the Wintellect Site (http://www.wintellect.com/) just look for
"Power Threading" in the bottom right.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top