Package io.apigee.trireme.core.modules

Examples of io.apigee.trireme.core.modules.AbstractFilesystem


    /**
     * Clean up all the leaked handles and file descriptors.
     */
    private void closeCloseables(Context cx)
    {
        AbstractFilesystem fs = (AbstractFilesystem)requireInternal("fs", cx);
        if (fs == null) {
            // We might still be initializing
            return;
        }
        fs.cleanup();

        for (Closeable c: openHandles.values()) {
            if (log.isDebugEnabled()) {
                log.debug("Closing leaked handle {}", c);
            }
View Full Code Here

TOP

Related Classes of io.apigee.trireme.core.modules.AbstractFilesystem

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.