Package com.uwyn.drone.core

Examples of com.uwyn.drone.core.Channel.send()


      {
        return;
      }
     
      // send the CTCP action message to the channel
      channel.send(Ctcp.escapeAction(message));
    }
  }
}
View Full Code Here


      {
        return;
      }

      // say the message on the channel
      channel.send(message);
    }
  }
}
View Full Code Here

          {
            channel_seen = (String)channel_seens.remove(0);
            String reply = processSeenWaiting(bot, channel, channel_seen);
            if (reply != null)
            {
              channel.send(reply);
            }
          }
        }

        synchronized (mMessageSeensWaiting)
View Full Code Here

          Iterator  channels_it = bot.getJoinedChannels().iterator();
          Channel    channel = null;
          while (channels_it.hasNext())
          {
            channel = (Channel)channels_it.next();
            channel.send(faq_data.getName()+": "+faq_data.getAnswer());
          }
        }
      }
    }
    catch (CoreException e)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.