Package org.jboss.logmanager.handlers

Examples of org.jboss.logmanager.handlers.SizeRotatingFileHandler


        return maxBackupIndex;
    }

    public synchronized void setMaxBackupIndex(final int maxBackupIndex) {
        this.maxBackupIndex = maxBackupIndex;
        final SizeRotatingFileHandler handler = value;
        if (handler != null) handler.setMaxBackupIndex(maxBackupIndex);
    }
View Full Code Here


        return rotateSize;
    }

    public synchronized void setRotateSize(final long rotateSize) {
        this.rotateSize = rotateSize;
        final SizeRotatingFileHandler handler = value;
        if (handler != null) handler.setRotateSize(rotateSize);
    }
View Full Code Here

    }

    @Override
    public synchronized void setFile(final String path) throws FileNotFoundException {
        fileName.setValue(Values.immediateValue(path));
        final SizeRotatingFileHandler handler = value;
        if (handler != null) handler.setFileName(path);
    }
View Full Code Here

TOP

Related Classes of org.jboss.logmanager.handlers.SizeRotatingFileHandler

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.