Package com.asakusafw.runtime.directio

Examples of com.asakusafw.runtime.directio.ResourceInfo


        stats = normalize(stats, root, temporary);

        List<ResourceInfo> results = new ArrayList<ResourceInfo>();
        for (FileStatus stat : stats) {
            counter.add(1);
            ResourceInfo resource = new ResourceInfo(
                    profile.getId(),
                    stat.getPath().toString(),
                    FileSystemCompatibility.isDirectory(stat));
            results.add(resource);
        }
View Full Code Here

TOP

Related Classes of com.asakusafw.runtime.directio.ResourceInfo

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.