Module: MultiVideoStreaming::Protocols::Interface

Included in:
Https, Platform
Defined in:
lib/multi_video_streaming/protocols/interface.rb

Instance Method Summary collapse

Instance Method Details

#method(name) ⇒ Object



6
7
8
9
10
# File 'lib/multi_video_streaming/protocols/interface.rb', line 6

def method(name)
  define_method(name) { |*args|
    raise "interface method #{name} not implemented"
  }
end