class Evolis::PremiumSdk::Sdk

Attributes

addon[R]

@return [Addon]

cmd[R]

@return [Cmd]

echo[R]

@return [Echo]

espf[R]

@return [Espf]

print[R]

@return [Print]

setting[R]

@return [Setting]

supervision[R]

@return [Supervision]

Public Class Methods

new(host, port) click to toggle source

Initialize child classes so they can be used directly under a Evolis::PremiumSdk.new

@param host [String] host or IP of SDK @param port [String, Fixnum] port of SDK

# File lib/evolis/premium_sdk.rb, line 41
def initialize(host, port)
  @addon       = Addon.new host, port
  @cmd         = Cmd.new host, port
  @echo        = Echo.new host, port
  @espf        = Espf.new host, port
  @print       = Print.new host, port
  @setting     = Setting.new host, port
  @supervision = Supervision.new host, port
end