Release Name: 1.1.0
Notes:
kgio provides non-blocking I/O methods for Ruby without raising
exceptions on EAGAIN and EINPROGRESS. It is intended for use with the
Unicorn and Rainbows! Rack servers, but may be used by other
applications.
* http://unicorn.bogomips.org/kgio/
* mongrel-unicorn@rubyforge.org
* git://git.bogomips.org/kgio.git
Changes:
* alternate classes may now be returned by accept/tryaccept
by setting Kgio.accept_class=
Changes:
GIT-VERSION-GEN | 2 +-
ext/kgio/kgio_ext.c | 33 ++++++++++++++++++++++++++-
test/test_accept_class.rb | 52 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 84 insertions(+), 3 deletions(-)
commit 39c851e595970a2349a8a39878afd94a3324e102
Author: Eric Wong
Date: Tue Sep 28 18:16:53 2010 -0700
kgio 1.1.0 - flexible accept methods
* an alternate class now be returned by accept/tryaccept
by setting "Kgio.accept_class ="
commit 911f6ab306aff1e24c9c570eeae33923fa1b99d9
Author: Eric Wong
Date: Tue Sep 28 18:04:51 2010 -0700
alternate classes may be returned by accept/tryaccept
These can be useful for avoiding wrapper objects and
also allows users to more easily try different things
without stepping on others' toe^H^H^Hclasses.
|