Examples of headerSignature()


Examples of org.jboss.profiler.aop.logger.FileProfileLogger.headerSignature()

    public void testHeader() throws Exception {
        ByteArrayOutputStream arrayOutput = new ByteArrayOutputStream(1024);
        FileProfileLogger logger = new FileProfileLogger(arrayOutput);

        logger.headerSignature(100);
        for (int i=0;i<100;i++) {
            logger.loadClass(1,1,"test",10);
        }

        ByteArrayInputStream input = new ByteArrayInputStream(arrayOutput.toByteArray());
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.