Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | big rename | Araq | 2014-08-27 | 1 | -6/+8 |
| | |||||
* | Fix asyncnet example. Rearrange net code. | Dominik Picheta | 2014-08-10 | 1 | -2/+2 |
| | |||||
* | Added SafeDisconn for accept. | Dominik Picheta | 2014-08-10 | 1 | -4/+5 |
| | |||||
* | Fixes incorrect async exception handling. Adds sleepAsync. | Dominik Picheta | 2014-08-09 | 1 | -2/+2 |
| | | | | | | | | | | | | | | The tasyncexceptions test has been added which tests for this incorrect exception handling behaviour. The problem was that the exception was raised inside a callback which was called from a previously finished async procedure. This caused a "Future already finished" error. The fix was to simply reraise the exception if the retFutureSym is already finished. sleepAsync was added to help with the reproduction of this test. It should also be useful for users however. Finally some debug information was added to futures to help with future bugs. | ||||
* | Implement safe flags for socket operations. | Dominik Picheta | 2014-07-13 | 1 | -17/+20 |
| | |||||
* | Fix broken async tests. | Dominik Picheta | 2014-07-13 | 1 | -1/+1 |
| | |||||
* | Many async optimisations. | Dominik Picheta | 2014-07-12 | 1 | -22/+52 |
| | | | | | | | | | * Selectors implementation will now attempt to immediately execute an IO operation instead of waiting for a ready notification. * Removed recursion in asynchttpserver. * Improved buffered implementation of recvLine in asyncnet. * Optimised ``respond`` in asynchttpserver removing a possible "Delayed ACK" situation. | ||||
* | Rename asyncdispatch.close to asyncdispatch.closeSocket. | Dominik Picheta | 2014-05-23 | 1 | -1/+1 |
| | |||||
* | Fixes buffered recv in asyncnet. | Dominik Picheta | 2014-04-30 | 1 | -11/+17 |
| | |||||
* | Implemented buffering for asynchronous sockets. | Dominik Picheta | 2014-04-13 | 1 | -2/+36 |
| | |||||
* | fixes for asynchttpserver | Andreas Rumpf | 2014-04-13 | 1 | -0/+1 |
| | |||||
* | Updates docs and news. | Dominik Picheta | 2014-04-06 | 1 | -0/+38 |
| | |||||
* | Async httpclient should now work. Changed recv behaviour. | Dominik Picheta | 2014-04-03 | 1 | -2/+3 |
| | | | | | | | asyncdispatch.recv no longer guarantees that it will read ALL the data requested. The underlying WinAPI function doesn't guarantee this and it already wasn't guaranteed anyway since the socket could disconnect mid-transmission. | ||||
* | Implemented async for httpclient. | Dominik Picheta | 2014-03-26 | 1 | -1/+1 |
| | |||||
* | Move asyncdispatch tests to asyncnet. | Dominik Picheta | 2014-03-26 | 1 | -34/+74 |
| | |||||
* | Moved the global dispatcher to asyncdispatch. | Dominik Picheta | 2014-03-23 | 1 | -11/+19 |
| | |||||
* | Many renames. Created high level asyncnet module. | Dominik Picheta | 2014-03-22 | 1 | -0/+147 |