All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.util.transport.MulticastServerTool Maven / Gradle / Ivy

/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.util.transport;

import com.liferay.portal.kernel.util.GetterUtil;

import java.net.DatagramPacket;
import java.net.InetAddress;

/**
 * 

* A server that will send out heart beat messages until you kill it. This * enables you to try and debug multicast issues. *

* * @author Michael C. Han */ public class MulticastServerTool { public static void main(String[] args) { try { int port = GetterUtil.getInteger(args[1]); long interval = GetterUtil.getLong(args[2]); DatagramHandler handler = new DatagramHandler() { @Override public void process(DatagramPacket packet) { String s = new String( packet.getData(), 0, packet.getLength()); System.out.println(s); } @Override public void errorReceived(Throwable t) { t.printStackTrace(); } }; MulticastTransport transport = new MulticastTransport( handler, args[0], port); transport.connect(); String msg = InetAddress.getLocalHost().getHostName() + ":" + port + " heartbeat "; int i = 0; while (true) { transport.sendMessage(msg + i); i++; Thread.sleep(interval); } } catch (Exception e) { e.printStackTrace(); System.err.println( "Usage: java MulticastServerTool multicastAddress port " + "interval"); System.exit(1); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy