Class UnsynchronizedAppenderBase<E>

    • Constructor Detail

      • UnsynchronizedAppenderBase

        public UnsynchronizedAppenderBase()
        Deprecated.
    • Method Detail

      • getName

        public java.lang.String getName()
        Deprecated.
        Description copied from interface: Appender
        Get the name of this appender. The name uniquely identifies the appender.
        Specified by:
        getName in interface Appender<E>
      • doAppend

        public void doAppend​(E eventObject)
        Deprecated.
        Description copied from interface: Appender
        This is where an appender accomplishes its work. Note that the argument is of type Object.
        Specified by:
        doAppend in interface Appender<E>
      • setName

        public void setName​(java.lang.String name)
        Deprecated.
        Set the name of this appender.
        Specified by:
        setName in interface Appender<E>
      • start

        public void start()
        Deprecated.
        Specified by:
        start in interface LifeCycle
      • stop

        public void stop()
        Deprecated.
        Specified by:
        stop in interface LifeCycle
      • isStarted

        public boolean isStarted()
        Deprecated.
        Specified by:
        isStarted in interface LifeCycle
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object
      • getCopyOfAttachedFiltersList

        public java.util.List<Filter<E>> getCopyOfAttachedFiltersList()
        Deprecated.
        Description copied from interface: FilterAttachable
        Get a copy of all the filters contained within this FilterAttachable object.
        Specified by:
        getCopyOfAttachedFiltersList in interface FilterAttachable<E>
        Returns:
        all attached filters as a list
      • getFilterChainDecision

        public FilterReply getFilterChainDecision​(E event)
        Deprecated.
        Description copied from interface: FilterAttachable
        Loop through the filters in the chain. As soon as a filter decides on ACCEPT or DENY, then that value is returned. If all of the filters return NEUTRAL, then NEUTRAL is returned.
        Specified by:
        getFilterChainDecision in interface FilterAttachable<E>