class XenStore::Connection::XenBusConnection

A PacketConnection implementation

Public Class Methods

new(path = nil) click to toggle source
# File lib/xsrb/connection.rb, line 52
def initialize(path = nil)
  @path = path || XenStore::Utils.xenbus_path
  transport = XenStore::Transport::XenBusTransport.new @path
  super(transport)
end