Package javax.jmdns.impl.tasks

Examples of javax.jmdns.impl.tasks.ServiceInfoResolver


     *  java.lang.String, int)
     */
    public void requestServiceInfo(String type, String name, int timeout) {
        registerServiceType(type);
        final ServiceInfoImpl info = new ServiceInfoImpl(type, name);
        new ServiceInfoResolver(this, info).start(timer);

        try {
            final long end = System.currentTimeMillis() + timeout;
            long delay;
            synchronized (info) {
View Full Code Here

TOP

Related Classes of javax.jmdns.impl.tasks.ServiceInfoResolver

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.