Package com.aelitis.azureus.core.metasearch.impl

Examples of com.aelitis.azureus.core.metasearch.impl.MetaSearchManagerImpl$SearchObject$resultWrapper


    protected void checkCompletion() throws SQLException
    {
        if (!closeOnCompletion)
            return;

        ResultWrapper result = firstUnclosedResult;
        while (result != null)
        {
            if (result.getResultSet() != null && !result.getResultSet().isClosed())
            {
                return;
            }
            result = result.getNext();
        }

        // prevent all ResultSet.close arising from Statement.close to loop here
        closeOnCompletion = false;
        try
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.core.metasearch.impl.MetaSearchManagerImpl$SearchObject$resultWrapper

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.