class GorgMessageSender::Configuration

Hold configuration of GorgService in instance variables

Attributes

application_id[RW]
durable_exchange[RW]
exchange_name[RW]
host[RW]
password[RW]
port[RW]
user[RW]
vhost[RW]

Public Class Methods

new() click to toggle source
# File lib/gorg_message_sender/configuration.rb, line 29
def initialize
  @application_id          = "gms" 
  @host           = "localhost"
  @port           = 5672
  @exchange_name  = "exchange"
  @user           = nil
  @password       = nil
  @vhost          = "/"
  @durable_exchange = true
end