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

com.alibaba.rocketmq.research.udp.UDPTest Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.alibaba.rocketmq.research.udp;

import java.net.DatagramSocket;
import java.net.SocketException;


/**
 * @author shijia.wxr
 */
public class UDPTest {

    public static void main(String[] args) throws SocketException {
        DatagramSocket datagramSocket = new DatagramSocket(4500);
        System.out.println("OK 4500");

        new DatagramSocket(4500);
        System.out.println("OK 4500");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy