Class: ConcurrentSHM::Channel::ClosedWriteError
- Inherits:
-
Object
- Object
- ConcurrentSHM::Channel::ClosedWriteError
- Defined in:
- lib/concurrent-shm/channel.rb
Overview
Raised when ‘#send` is called on a closed channel.
Instance Method Summary collapse
-
#initialize ⇒ ClosedWriteError
constructor
A new instance of ClosedWriteError.
Constructor Details
#initialize ⇒ ClosedWriteError
Returns a new instance of ClosedWriteError.
7 8 9 |
# File 'lib/concurrent-shm/channel.rb', line 7 def initialize super("Write to closed channel") end |