Class: Async::Container::Channel
- Inherits:
-
Object
- Object
- Async::Container::Channel
- Defined in:
- lib/async/container/channel.rb
Overview
Provides a basic multi-thread/multi-process uni-directional communication channel.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#in ⇒ Object
The input end of the pipe.
-
#out ⇒ Object
The output end of the pipe.
Instance Method Summary collapse
-
#close ⇒ Object
Close both ends of the pipe.
-
#close_read ⇒ Object
Close the input end of the pipe.
-
#close_write ⇒ Object
Close the output end of the pipe.
-
#initialize ⇒ Channel
constructor
Initialize the channel using a pipe.
-
#receive ⇒ Object
Receive an object from the pipe.
Constructor Details
#initialize ⇒ Channel
Initialize the channel using a pipe.
13 14 15 |
# File 'lib/async/container/channel.rb', line 13 def initialize @in, @out = ::IO.pipe end |
Instance Attribute Details
#in ⇒ Object
The input end of the pipe.
19 20 21 |
# File 'lib/async/container/channel.rb', line 19 def in @in end |
#out ⇒ Object
The output end of the pipe.
23 24 25 |
# File 'lib/async/container/channel.rb', line 23 def out @out end |
Instance Method Details
#close ⇒ Object
Close both ends of the pipe.
36 37 38 39 |
# File 'lib/async/container/channel.rb', line 36 def close close_read close_write end |
#close_read ⇒ Object
Close the input end of the pipe.
26 27 28 |
# File 'lib/async/container/channel.rb', line 26 def close_read @in.close end |
#close_write ⇒ Object
Close the output end of the pipe.
31 32 33 |
# File 'lib/async/container/channel.rb', line 31 def close_write @out.close end |
#receive ⇒ Object
Receive an object from the pipe. Internally, prefers to receive newline formatted JSON, otherwise returns a hash table with a single key ‘:line` which contains the line of data that could not be parsed as JSON.
44 45 46 47 48 49 50 51 52 |
# File 'lib/async/container/channel.rb', line 44 def receive if data = @in.gets begin return JSON.parse(data, symbolize_names: true) rescue return {line: data} end end end |