Examples of walkRegions()


Examples of com.antlersoft.odb.DiskAllocator.walkRegions()

    {
        DiskAllocator da=new DiskAllocator( new File( args[0]));
        System.out.println( args[0]+" free:");
        da.walkInternalFreeList( System.out);
        System.out.println( args[0]+" used:");
        da.walkRegions( System.out);

        da.close();
    }

    public static void main( String[] args)
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.