def __init__(self,
              location,
              privateId,
              channel,
              groupMsgClientClassList=None,
              ssl_ctx=None):
     SecureGroupMsgClient.ClientContextFactory.context = ssl_ctx
     BaseVenueEventClient.__init__(self, location, privateId, channel,
                                   groupMsgClientClassList)
 def __init__(self,
              location,
              privateId,
              channel,
              groupMsgClientClassList=None):
     # Pass along the lower level groupMsgService, which the
     #   InProcessGroupMsgClient knows how to use.
     BaseVenueEventClient.__init__(self, location.groupMsgService,
                                   privateId, channel,
                                   groupMsgClientClassList)
 def __init__(self, location, privateId, channel, groupMsgClientClassList=None):
     # Pass along the lower level groupMsgService, which the
     #   InProcessGroupMsgClient knows how to use.
     BaseVenueEventClient.__init__(self, location.groupMsgService, privateId, channel, groupMsgClientClassList)
Пример #4
0
 def __init__(self, location, privateId, channel, groupMsgClientClassList=None, ssl_ctx=None):
     SecureGroupMsgClient.ClientContextFactory.context = ssl_ctx
     BaseVenueEventClient.__init__(self, location, privateId, channel, groupMsgClientClassList)