This repository has been archived by the owner on Dec 7, 2017. It is now read-only.
Releases: safakgur/socket-awaitable
Releases · safakgur/socket-awaitable
Dawn.SocketAwaitable 1.1.1
Dawn.SocketAwaitable 1.1
Release Notes
- Added
SocketAwaitable.ShouldCaptureContext
property which, if set to true, causes the socket operations using the SocketAwaitable to capture the current synchronization context before they begin, and marshal the continuation back to the captured context. SocketAwaitable
now exposes moreSocketAsyncEventArgs
members:ConnectByNameError
propertyDisconnectReuseSocket
propertyLastOperation
property
- Added
SocketAwaitable.IsCompleted
check toSocketEx
for fast-fail.
Dawn.SocketAwaitable 1.0
Release Notes
- Added
SocketAwaitable
, an awaitable alternative toSocketAsyncEventArgs
- Added
SocketAwaiter
, an awaiter class that is exposed by theSocketAwaitable
. - Added
SocketEx
a static class that provides awaitable socket extensions. - Added
SocketAwaitablePool
, a thread-safe pool forSocketAwaitable
instances. - Added
BlockingBufferManager
, a thread-safe manager that provides fixed-size buffers.