Example #1
0
    def __init__(self):

        mq = Messaging()
        self.connection = mq.connection

        FanoutConsumer.__init__(self, self.connection)
        threading.Thread.__init__(self)
Example #2
0
    def __init__(self):

        mq = Messaging()

        FanoutConsumer.__init__(self, mq.connection)
        threading.Thread.__init__(self)

        self.pd = PagerDutyClient()
Example #3
0
    def __init__(self, irc):

        self.irc = irc

        mq = Messaging()

        FanoutConsumer.__init__(self, mq.connection)
        threading.Thread.__init__(self)
Example #4
0
    def __init__(self):

        mq = Messaging()

        FanoutConsumer.__init__(self, mq.connection)
        threading.Thread.__init__(self)

        self.pd = PagerDutyClient()
Example #5
0
    def __init__(self, onhold, tokens):

        mq = Messaging()

        FanoutConsumer.__init__(self, mq.connection)
        threading.Thread.__init__(self)

        self.onhold = onhold
        self.tokens = tokens
Example #6
0
    def __init__(self, onhold, tokens):

        mq = Messaging()
        self.connection = mq.connection

        FanoutConsumer.__init__(self, self.connection)
        threading.Thread.__init__(self)

        self.onhold = onhold
        self.tokens = tokens