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

Version Path
acpc_poker_basic_proxy-0.0.3 lib/acpc_poker_basic_proxy/communication_logic/acpc_dealer_information.rb
acpc_poker_basic_proxy-0.0.2 lib/acpc_poker_basic_proxy/communication_logic/acpc_dealer_information.rb
acpc_poker_basic_proxy-0.0.1 lib/acpc_poker_basic_proxy/communication_logic/acpc_dealer_information.rb