Package com.sun.appserv.management.base

Examples of com.sun.appserv.management.base.Sample.uploadBytes()


            for ( int i = 0; i < BANDWIDTH_ITER; ++i )
            {
                // test upload bandwidth
                final byte[]  uploadBytes  = new byte[ 1 * MB ];
                final long  uploadStart  = now();
                sample.uploadBytes( uploadBytes );
                final long  uploadElapsed  = now() - uploadStart;
                final int  uploadKBPerSec  = (int)((uploadBytes.length / 1024.0) / (uploadElapsed / 1000.0));
                printPerf( "Upload bandwidth (" + uploadBytes.length + " bytes): " + uploadKBPerSec + "kb/sec" );
               
                // test download bandwidth
View Full Code Here


            {
                final long  uploadStart  = now();
                int total   = 0;
                while ( total < TEST_SIZE )
                {
                    sample.uploadBytes( chunk );
                    total   += chunk.length;
                }
                final long  uploadElapsed  = now() - uploadStart;
                totalElapsed    += uploadElapsed;
            }
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.