Uses of Interface
org.apache.log4j.rolling.helper.Action
-
Packages that use Action Package Description org.apache.log4j.rolling Implements various file rolling policies.org.apache.log4j.rolling.helper Internal helper classes used byorg.apache.log4j.rolling
package. -
-
Uses of Action in org.apache.log4j.rolling
Fields in org.apache.log4j.rolling declared as Action Modifier and Type Field Description private Action
RolloverDescriptionImpl. asynchronous
Action to be completed after close of current active log file and before next rollover attempt, may be executed asynchronously.private Action
RollingFileAppender. lastRolloverAsyncAction
Asynchronous action (like compression) from previous rollover.private Action
RolloverDescriptionImpl. synchronous
Action to be completed after close of current active log file before returning control to caller.Methods in org.apache.log4j.rolling that return Action Modifier and Type Method Description Action
RolloverDescription. getAsynchronous()
Action to be completed after close of current active log file and before next rollover attempt, may be executed asynchronously.Action
RolloverDescriptionImpl. getAsynchronous()
Action to be completed after close of current active log file and before next rollover attempt, may be executed asynchronously.Action
RolloverDescription. getSynchronous()
Action to be completed after close of current active log file before returning control to caller.Action
RolloverDescriptionImpl. getSynchronous()
Action to be completed after close of current active log file before returning control to caller.Constructors in org.apache.log4j.rolling with parameters of type Action Constructor Description RolloverDescriptionImpl(java.lang.String activeFileName, boolean append, Action synchronous, Action asynchronous)
Create new instance. -
Uses of Action in org.apache.log4j.rolling.helper
Classes in org.apache.log4j.rolling.helper that implement Action Modifier and Type Class Description class
ActionBase
Abstract base class for implementations of Action.class
CompositeAction
A group of Actions to be executed in sequence.class
FileRenameAction
File rename action.class
GZCompressAction
Compresses a file using GZ compression.class
ZipCompressAction
Compresses a file using Zip compression.Fields in org.apache.log4j.rolling.helper declared as Action Modifier and Type Field Description private Action[]
CompositeAction. actions
Actions to perform.
-