Package javax.jmdns.impl

Examples of javax.jmdns.impl.JmDNSImpl


     * @return jmDNS instance
     * @exception IOException
     *                if an exception occurs during the socket creation
     */
    public static JmDNS create() throws IOException {
        return new JmDNSImpl(null, null);
    }
View Full Code Here


     * @return jmDNS instance
     * @exception IOException
     *                if an exception occurs during the socket creation
     */
    public static JmDNS create(final InetAddress addr) throws IOException {
        return new JmDNSImpl(addr, null);
    }
View Full Code Here

     * @return jmDNS instance
     * @exception IOException
     *                if an exception occurs during the socket creation
     */
    public static JmDNS create(final String name) throws IOException {
        return new JmDNSImpl(null, name);
    }
View Full Code Here

     * @return jmDNS instance
     * @exception IOException
     *                if an exception occurs during the socket creation
     */
    public static JmDNS create(final InetAddress addr, final String name) throws IOException {
        return new JmDNSImpl(addr, name);
    }
View Full Code Here

    /**
     * Create an instance of JmDNS.
     */
    public static JmDNS create() throws IOException
    {
        return new JmDNSImpl();
    }
View Full Code Here

     * Create an instance of JmDNS and bind it to a
     * specific network interface given its IP-address.
     */
    public static JmDNS create(InetAddress addr) throws IOException
    {
        return new JmDNSImpl(addr);
    }
View Full Code Here

TOP

Related Classes of javax.jmdns.impl.JmDNSImpl

Copyright © 2018 www.massapicom. 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.