Sha256: 1e99205d6f4966a78a1726d075f157f12f3bcae24feb5f5c968edfd5ac3d933b
Contents?: true
Size: 585 Bytes
Versions: 3
Compression:
Stored size: 585 Bytes
Contents
# Information about a dealer instance. class AcpcDealerInformation # @return [String] The host name of the dealer associated with this table. attr_reader :host_name # @return [Integer] The port number of the dealer associated with this table. attr_reader :port_number # @return [Integer] The dealer's response timeout. attr_reader :millisecond_response_timeout def initialize(host_name, port_number, millisecond_response_timeout=nil) @host_name = host_name @port_number = port_number @millisecond_response_timeout = millisecond_response_timeout end end
Version data entries
3 entries across 3 versions & 1 rubygems