Class IfLastModified
java.lang.Object
org.apache.logging.log4j.core.appender.rolling.action.IfLastModified
- All Implemented Interfaces:
PathCondition
@Plugin(name="IfLastModified",
category="Core",
printObject=true)
public final class IfLastModified
extends Object
implements PathCondition
PathCondition that accepts paths that are older than the specified duration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Durationprivate static final Clockprivate static final Loggerprivate final PathCondition[]Fields inherited from interface org.apache.logging.log4j.core.appender.rolling.action.PathCondition
EMPTY_ARRAY -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateIfLastModified(Duration age, PathCondition[] nestedConditions) -
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(Path basePath, Path relativePath, BasicFileAttributes attrs) Returnstrueif the specified candidate path should be deleted,falseotherwise.voidInvoked before a new file tree walk is started.static IfLastModifiedcreateAgeCondition(Duration age, PathCondition... nestedConditions) Create an IfLastModified condition.getAge()toString()
-
Field Details
-
LOGGER
-
CLOCK
-
age
-
nestedConditions
-
-
Constructor Details
-
IfLastModified
-
-
Method Details
-
getAge
-
getNestedConditions
-
accept
Description copied from interface:PathConditionReturnstrueif the specified candidate path should be deleted,falseotherwise.- Specified by:
acceptin interfacePathCondition- Parameters:
basePath- the directory from where to start scanning for deletion candidate filesrelativePath- the candidate for deletion. This path is relative to the baseDir.attrs- attributes of the candidate path- Returns:
- whether the candidate path should be deleted
-
beforeFileTreeWalk
public void beforeFileTreeWalk()Description copied from interface:PathConditionInvoked before a new file tree walk is started. Stateful PathConditions can reset their state when this method is called.- Specified by:
beforeFileTreeWalkin interfacePathCondition
-
createAgeCondition
@PluginFactory public static IfLastModified createAgeCondition(@PluginAttribute("age") Duration age, @PluginElement("PathConditions") PathCondition... nestedConditions) Create an IfLastModified condition.- Parameters:
age- The path age that is accepted by this condition. Must be a valid Duration.nestedConditions- nested conditions to evaluate if this condition accepts a path- Returns:
- An IfLastModified condition.
-
toString
-