Exemplo n.º 1
0
    def __init__(self):

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

        FanoutConsumer.__init__(self, self.connection)
        threading.Thread.__init__(self)
Exemplo n.º 2
0
    def __init__(self):

        mq = Messaging()

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

        self.pd = PagerDutyClient()
Exemplo n.º 3
0
    def __init__(self, irc):

        self.irc = irc

        mq = Messaging()

        FanoutConsumer.__init__(self, mq.connection)
        threading.Thread.__init__(self)
Exemplo n.º 4
0
    def __init__(self):

        mq = Messaging()

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

        self.pd = PagerDutyClient()
Exemplo n.º 5
0
    def __init__(self, onhold, tokens):

        mq = Messaging()

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

        self.onhold = onhold
        self.tokens = tokens
Exemplo n.º 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