module Liebre::Adapter::Interface::Conn

Public Instance Methods

open_channel() click to toggle source
# File lib/liebre/adapter/interface/conn.rb, line 10
def open_channel
  raise NotImplementedError, "All adapters must implement connection open_channel() to start new channels"
end
start() click to toggle source
# File lib/liebre/adapter/interface/conn.rb, line 6
def start
  raise NotImplementedError, "All adapters must implement connection start() to establish connection"
end
stop() click to toggle source
# File lib/liebre/adapter/interface/conn.rb, line 14
def stop
  raise NotImplementedError, "All adapters must implement connection stop() to disconnect from the server"
end