Package net.windwards.dnsfrontend.api

Examples of net.windwards.dnsfrontend.api.Backend.makeKey()


        if (backend == null) {
            this.refuse();
            return;
        }

        this.ident = backend.makeKey(question);

        logger.debug("Checking cache [key={}]", this.ident);

        // check cache
        Element lmnt = this.cache.get(this.getIdent());
View Full Code Here


            pack.task.timeout();
            return;
        }

        Backend backend = this.repo.lookup(record.getType());
        String key = backend.makeKey(record);
        pack = this.futures.remove(key);

        if (pack == null) {
            logger.info("Unsolicited cache insert [key={}, record={}]", key, record);
            return;
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.