public SlackConnection(
     IConnectionFactory connectionFactory,
     IMentionDetector mentionDetector,
     IMonitoringFactory monitoringFactory)
 {
     _connectionFactory = connectionFactory;
     _mentionDetector   = mentionDetector;
     _monitoringFactory = monitoringFactory;
 }
 public SlackConnection(IConnectionFactory connectionFactory, IChatHubInterpreter chatHubInterpreter, IMentionDetector mentionDetector)
 {
     _connectionFactory  = connectionFactory;
     _chatHubInterpreter = chatHubInterpreter;
     _mentionDetector    = mentionDetector;
 }
Example #3
0
 public SlackConnection(IConnectionFactory connectionFactory, IMentionDetector mentionDetector)
 {
     _connectionFactory = connectionFactory;
     _mentionDetector = mentionDetector;
 }
Example #4
0
 public SlackConnection(IConnectionFactory connectionFactory, IMentionDetector mentionDetector)
 {
     _connectionFactory = connectionFactory;
     _mentionDetector   = mentionDetector;
 }
 public SlackConnectionFactory(IConnectionFactory connectionFactory, IChatHubInterpreter chatHubInterpreter, IMentionDetector mentionDetector)
 {
     _connectionFactory = connectionFactory;
     _chatHubInterpreter = chatHubInterpreter;
     _mentionDetector = mentionDetector;
 }