Class: ConcurrentSHM::Channel::ClosedWriteError

Inherits:
Object
  • Object
show all
Defined in:
lib/concurrent-shm/channel.rb

Overview

Raised when ‘#send` is called on a closed channel.

Instance Method Summary collapse

Constructor Details

#initializeClosedWriteError

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