class Selective::Ruby::Core::NamedPipe
def initialize_pipes
def initialize_pipes create_pipes # Open the read and write pipes in separate threads Thread.new do @read_pipe = File.open(read_pipe_path, "r") end Thread.new do @write_pipe = File.open(write_pipe_path, "w") end end