Package org.apache.log4j.rolling.helper

Examples of org.apache.log4j.rolling.helper.ActionBase


    String activeFileName = rolloverDescription.getActiveFileName();
    boolean append = rolloverDescription.getAppend();
    Action synchronous = rolloverDescription.getSynchronous();
    final Action asynchronous = rolloverDescription.getAsynchronous();

    Action newAsynchronous = new ActionBase() {

      @Override
      public boolean execute() throws IOException {
        boolean success = true;
        if (asynchronous != null) {
View Full Code Here

TOP

Related Classes of org.apache.log4j.rolling.helper.ActionBase

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.