예제 #1
0
파일: get_state.py 프로젝트: pubnub/python
 def channels(self, channels):
     utils.extend_list(self._channels, channels)
     return self
예제 #2
0
파일: get_state.py 프로젝트: pubnub/python
 def channel_groups(self, channel_groups):
     utils.extend_list(self._groups, channel_groups)
     return self
 def channel_timetokens(self, timetokens):
     timetokens = [str(item) for item in timetokens]
     utils.extend_list(self._channels_timetoken, timetokens)
     return self
예제 #4
0
 def channels(self, channels):
     utils.extend_list(self._channels, channels)
     return self
 def channel(self, channel):
     utils.extend_list(self._channel, channel)
     return self
예제 #6
0
 def channel_groups(self, channel_groups):
     utils.extend_list(self._groups, channel_groups)
     return self
예제 #7
0
 def auth_keys(self, auth_keys):
     utils.extend_list(self._auth_keys, auth_keys)
     return self
예제 #8
0
파일: audit.py 프로젝트: pubnub/python
 def auth_keys(self, auth_keys):
     utils.extend_list(self._auth_keys, auth_keys)
     return self
예제 #9
0
 def uuids(self, uuids):
     utils.extend_list(self._uuids, uuids)
     return self