Examples of PlatformMessage


Examples of com.aelitis.azureus.core.messenger.PlatformMessage

    }

    if (listRenderers.size() == 0) {
      return;
    }
    PlatformMessage message = new PlatformMessage("AZMSG", LISTENER_ID,
        OP_REPORT_DEVICES, new Object[] {
          "renderers",
          listRenderers
        }, 500);
    PlatformMessenger.queueMessage(message, null);
View Full Code Here

Examples of com.aelitis.azureus.core.messenger.PlatformMessage

  public static final long DEFAULT_RETRY_MS = 1000L * 60 * 60 * 24;

  public static void getEntries(final long contentNetworkID, final long agoMS,
      long maxDelayMS, String reason, final GetEntriesReplyListener replyListener) {
    PlatformMessage message = new PlatformMessage("AZMSG",
        reason.equals("shown") ? "vznews" : LISTENER_ID, OP_GET, new Object[] {
          "ago-ms",
          new Long(agoMS),
          "reason",
          reason,
        }, maxDelayMS);
    message.setContentNetworkID(contentNetworkID);

    PlatformMessengerListener listener = null;
    if (replyListener != null) {
      listener = new PlatformMessengerListener() {
        public void messageSent(PlatformMessage message) {
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.