public ObserveVoiceChannelCommand(
     IOptionsMonitor <ObservedVoiceChannelOptions> observedVoiceChannelOptionsMonitor,
     ObservedVoiceChannelsCache observedVoiceChannelsCache)
 {
     _observedVoiceChannelOptionsMonitor = observedVoiceChannelOptionsMonitor;
     _observedVoiceChannelsCache         = observedVoiceChannelsCache;
 }
 public ReactionAddedEventHandler(ObservedVoiceChannelsCache observedVoiceChannelsCache, IOptionsMonitor <ObservedVoiceChannelOptions> observedVoiceChannelOptionsMonitor)
 {
     _observedVoiceChannelsCache         = observedVoiceChannelsCache;
     _observedVoiceChannelOptionsMonitor = observedVoiceChannelOptionsMonitor;
 }
Exemplo n.º 3
0
 public ChannelDestroyedEventHandler(ObservedVoiceChannelsCache observedVoiceChannelsCache)
 {
     _observedVoiceChannelsCache = observedVoiceChannelsCache;
 }
Exemplo n.º 4
0
 public UserVoiceStateUpdatedEventHandler(ObservedVoiceChannelsCache observedVoiceChannelsCache)
 {
     _observedVoiceChannelsCache = observedVoiceChannelsCache;
 }
 public ReleaseVoiceChannelCommand(ObservedVoiceChannelsCache observedVoiceChannelsCache)
 {
     _observedVoiceChannelsCache = observedVoiceChannelsCache;
 }