Example usage for org.apache.commons.net.time TimeUDPClient close

List of usage examples for org.apache.commons.net.time TimeUDPClient close

Introduction

In this page you can find the example usage for org.apache.commons.net.time TimeUDPClient close.

Prototype

public void close() 

Source Link

Document

Closes the DatagramSocket used for the connection.

Usage

From source file:beans.TimeClient.java

public static final void timeUDP(String host) throws IOException {
    TimeUDPClient client = new TimeUDPClient();

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);/*from   w w w.j  av a 2 s.  co  m*/
    client.open();
    System.out.println(client.getDate(InetAddress.getByName(host)));
    client.close();
}

From source file:examples.unix.rdate.java

public static final void timeUDP(String host) throws IOException {
    TimeUDPClient client = new TimeUDPClient();

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);//w ww.  ja va  2 s  . co  m
    client.open();
    System.out.println(client.getDate(InetAddress.getByName(host)).toString());
    client.close();
}

From source file:com.nubits.nubot.NTP.NTPClient.java

private Date getTimeImpl(String host) throws IOException {
    Date toRet;//from  w w w . j  av a2  s.  com
    TimeUDPClient client = new TimeUDPClient();
    // We want to timeout if a response takes longer than TIMEOUT seconds
    client.setDefaultTimeout(TIMEOUT);
    client.open();
    toRet = client.getDate(InetAddress.getByName(host));
    client.close();

    return toRet;
}

From source file:it.jnrpe.plugin.CheckTime.java

private Date getTimeUDP(String host, int timeout) throws IOException {
    TimeUDPClient client = new TimeUDPClient();
    client.setDefaultTimeout((int) TimeUnit.SECOND.convert(timeout));
    client.open();//from w  w  w .  ja  v a  2 s  . c o  m
    Date date = client.getDate(InetAddress.getByName(host));
    client.close();
    return date;
}