class FFWD::Tunnel::Plugin::Handle

Object type that should be returned by ‘tcp’.

Public Instance Methods

close(&block) click to toggle source
# File lib/ffwd/tunnel/plugin.rb, line 22
def close &block
  raise "Not implemented: close"
end
data(&block) click to toggle source
# File lib/ffwd/tunnel/plugin.rb, line 26
def data &block
  raise "Not implemented: data"
end
send_data(data) click to toggle source
# File lib/ffwd/tunnel/plugin.rb, line 30
def send_data data
  raise "Not implemented: send_data"
end