Examples of MessageEvent

  • jetbrains.communicator.core.transport.MessageEvent
    @author kir
  • net.gleamynode.netty.channel.MessageEvent
  • net.sourceforge.processdash.msg.MessageEvent
  • org.cspoker.common.api.chat.event.MessageEvent
  • org.directwebremoting.event.MessageEvent
    An MessageEvent is fired to a set of {@link MessageListener}s by the DWR {@link Hub}. @author Joe Walker [joe at getahead dot ltd dot uk]
  • org.eclipse.ecf.internal.provider.xmpp.events.MessageEvent
  • org.groovymud.engine.event.messages.MessageEvent
  • org.gwtoolbox.sample.ioc.client.event.MessageEvent
    @author Uri Boness
  • org.jboss.netty.channel.MessageEvent
    @author The Netty Project (netty-dev@lists.jboss.org) @author Trustin Lee (tlee@redhat.com) @version $Rev: 6 $, $Date: 2008-08-08 10:40:10 +0900 (Fri, 08 Aug 2008) $
  • org.jivesoftware.smackx.packet.MessageEvent
    Represents message events relating to the delivery, display, composition and cancellation of messages.

    There are four message events currently defined in this namespace:

    1. Offline
      Indicates that the message has been stored offline by the intended recipient's server. This event is triggered only if the intended recipient's server supports offline storage, has that support enabled, and the recipient is offline when the server receives the message for delivery.
    2. Delivered
      Indicates that the message has been delivered to the recipient. This signifies that the message has reached the recipient's XMPP client, but does not necessarily mean that the message has been displayed. This event is to be raised by the XMPP client.
    3. Displayed
      Once the message has been received by the recipient's XMPP client, it may be displayed to the user. This event indicates that the message has been displayed, and is to be raised by the XMPP client. Even if a message is displayed multiple times, this event should be raised only once.
    4. Composing
      In threaded chat conversations, this indicates that the recipient is composing a reply to a message. The event is to be raised by the recipient's XMPP client. A XMPP client is allowed to raise this event multiple times in response to the same request, providing the original event is cancelled first.
    @author Gaston Dombiak
  • org.netbeans.lib.cvsclient.event.MessageEvent
  • org.pircbotx.hooks.events.MessageEvent
  • org.rsbot.event.events.MessageEvent
    A message event.
  • robocode.MessageEvent
    A MessageEvent is sent to {@link TeamRobot#onMessageReceived(MessageEvent) onMessageReceived()} when a teammate sends a message to your robot.You can use the information contained in this event to determine what to do. @author Mathew A. Nelson (original)
  • rocks.xmpp.core.stanza.MessageEvent
    A message event is fired whenever a message is received or sent. @author Christian Schudt @see MessageListener

  • Examples of rocks.xmpp.core.stanza.MessageEvent

        }

        void notifyMessageListeners(Message message, boolean incoming) {
            for (MessageListener messageListener : messageListeners) {
                try {
                    messageListener.handle(new MessageEvent(this, message, incoming));
                } catch (Exception e) {
                    logger.log(Level.WARNING, e.getMessage(), 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.