Package chatbot.client

Examples of chatbot.client.MessageListener


  @Override
  public void onConnectionSuccessful() {
    MessageChannel channel = this.clientConnection.joinChannel(this.channelName);
    MessageDispatcher dispatcher = new RedditMessageDispatcher(channel);
    RedditClient redditClient = new RedditClient(dispatcher);
    MessageListener messageListener = new RedditMessageResponseListener(this.responseStrategy, redditClient);
    channel.registerListener(messageListener);
  }
View Full Code Here

TOP

Related Classes of chatbot.client.MessageListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.