Class: FFWD::Tunnel::Plugin::Handle

Inherits:
Object
  • Object
show all
Defined in:
lib/ffwd/tunnel/plugin.rb

Overview

Object type that should be returned by ‘tcp’.

Instance Method Summary collapse

Instance Method Details

#close(&block) ⇒ Object



22
23
24
# File 'lib/ffwd/tunnel/plugin.rb', line 22

def close &block
  raise "Not implemented: close"
end

#data(&block) ⇒ Object



26
27
28
# File 'lib/ffwd/tunnel/plugin.rb', line 26

def data &block
  raise "Not implemented: data"
end

#send_data(data) ⇒ Object



30
31
32
# File 'lib/ffwd/tunnel/plugin.rb', line 30

def send_data data
  raise "Not implemented: send_data"
end