Examples of LookupRequest


Examples of com.mcbans.firestar.mcbans.request.LookupRequest

        if (!Util.isValidName(targetName)){
            callback.error("Invalid lookup target name!");
        }

        LookupRequest request = new LookupRequest(plugin, callback, targetName, targetUUID, senderName, senderUUID);
        Thread triggerThread = new Thread(request);
        triggerThread.start();
    }
View Full Code Here

Examples of com.mcbans.firestar.mcbans.request.LookupRequest

            return;
            }
        }*/
       
        // Start
        LookupRequest request = new LookupRequest(plugin, new LookupCallback(plugin, sender), target, targetUUID, senderName, senderUUID);
        Thread triggerThread = new Thread(request);
        triggerThread.start();
    }
View Full Code Here

Examples of fr.dyade.aaa.jndi2.msg.LookupRequest

  public Object lookup(String name) throws NamingException {
    if (Trace.logger.isLoggable(BasicLevel.DEBUG))
      Trace.logger.log(BasicLevel.DEBUG, "NamingContextImpl.lookup(" +
                       name + ')');
    CompositeName path = merge(contextPath, name);
    JndiReply reply = connection.invoke(new LookupRequest(path));
    if (reply instanceof JndiError) {
      NamingException exc = ((JndiError)reply).getException();
      exc.fillInStackTrace();
      throw exc;
    } else if (reply instanceof LookupReply) {
View Full Code Here

Examples of org.gradle.messaging.remote.internal.protocol.LookupRequest

    public <T> T addOutgoing(Class<T> type) {
        String channelKey = type.getName();
        lock.lock();
        try {
            if (channels.add(channelKey)) {
                discoveryBroadcast.getTop().dispatch(new LookupRequest(messageOriginator, group, channelKey));
            }
        } finally {
            lock.unlock();
        }
        return new ProxyDispatchAdapter<T>(hub.addMulticastOutgoing(channelKey), type).getSource();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.