doc: stop recommending Fiber* stuff
[rainbows.git] / lib / rainbows / fiber / io / socket.rb
blob2b4df12a35b939253b5e44eaba5a2426ec34f434
1 # -*- encoding: binary -*-
2 # A Fiber-aware Socket class, gives users the illusion of a synchronous
3 # interface that yields away from the current Fiber whenever
4 # the underlying descriptor is blocked on reads or write.
6 # It's not recommended to use any of this in your applications
7 # unless you're willing to accept breakage.  Most of this is very
8 # difficult-to-use, fragile and we don't have much time to devote to
9 # supporting these in the future.
10 class Rainbows::Fiber::IO::Socket < Kgio::Socket
11   include Rainbows::Fiber::IO::Methods
12 end