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