sbt.internal.util

BufferedAppender

class BufferedAppender extends AbstractAppender

Am appender that can buffer the logging done on it and then can flush the buffer to the delegate appender provided in the constructor. Use 'record()' to start buffering and then 'play' to flush the buffer to the backing appender. The logging level set at the time a message is originally logged is used, not the level at the time 'play' is called.

Linear Supertypes
AbstractAppender, Appender, AbstractFilterable, Filterable, AbstractLifeCycle, LifeCycle2, LifeCycle, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BufferedAppender
  2. AbstractAppender
  3. Appender
  4. AbstractFilterable
  5. Filterable
  6. AbstractLifeCycle
  7. LifeCycle2
  8. LifeCycle
  9. AnyRef
  10. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addFilter(arg0: Filter): Unit

    Definition Classes
    AbstractFilterable → Filterable
  7. def append(event: LogEvent): Unit

    Definition Classes
    BufferedAppender → Appender
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def buffer[T](f: ⇒ T): T

  10. def bufferQuietly[T](f: ⇒ T): T

  11. def clearBuffer(): Unit

    Clears buffered events and disables buffering.

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def equalsImpl(arg0: Any): Boolean

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  16. def error(arg0: String, arg1: Throwable): Unit

    Definition Classes
    AbstractAppender
  17. def error(arg0: String, arg1: LogEvent, arg2: Throwable): Unit

    Definition Classes
    AbstractAppender
  18. def error(arg0: String): Unit

    Definition Classes
    AbstractAppender
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def getFilter(): Filter

    Definition Classes
    AbstractFilterable → Filterable
  22. def getHandler(): ErrorHandler

    Definition Classes
    AbstractAppender → Appender
  23. def getLayout(): Layout[_ <: Serializable]

    Definition Classes
    AbstractAppender → Appender
  24. def getName(): String

    Definition Classes
    AbstractAppender → Appender
  25. def getState(): State

    Definition Classes
    AbstractLifeCycle → LifeCycle
  26. def hasFilter(): Boolean

    Definition Classes
    AbstractFilterable → Filterable
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. def hashCodeImpl(): Int

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  29. def ignoreExceptions(): Boolean

    Definition Classes
    AbstractAppender → Appender
  30. def initialize(): Unit

    Definition Classes
    AbstractLifeCycle → LifeCycle
  31. def isFiltered(arg0: LogEvent): Boolean

    Definition Classes
    AbstractFilterable → Filterable
  32. def isInitialized(): Boolean

    Definition Classes
    AbstractLifeCycle
  33. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  34. def isStarted(): Boolean

    Definition Classes
    AbstractLifeCycle → LifeCycle
  35. def isStarting(): Boolean

    Definition Classes
    AbstractLifeCycle
  36. def isStopped(): Boolean

    Definition Classes
    AbstractLifeCycle → LifeCycle
  37. def isStopping(): Boolean

    Definition Classes
    AbstractLifeCycle
  38. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  39. final def notify(): Unit

    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  41. def play(): Unit

    Flushes the buffer to the delegate logger.

    Flushes the buffer to the delegate logger. This method calls logAll on the delegate so that the messages are written consecutively. The buffer is cleared in the process.

  42. def record(): Unit

    Enables buffering.

  43. def removeFilter(arg0: Filter): Unit

    Definition Classes
    AbstractFilterable → Filterable
  44. def setHandler(arg0: ErrorHandler): Unit

    Definition Classes
    AbstractAppender → Appender
  45. def setStarted(): Unit

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  46. def setStarting(): Unit

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  47. def setState(arg0: State): Unit

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  48. def setStopped(): Unit

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  49. def setStopping(): Unit

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  50. def start(): Unit

    Definition Classes
    AbstractFilterable → AbstractLifeCycle → LifeCycle
  51. def stop(arg0: Long, arg1: TimeUnit, arg2: Boolean): Boolean

    Attributes
    protected[org.apache.logging.log4j.core.filter]
    Definition Classes
    AbstractFilterable
  52. def stop(arg0: Long, arg1: TimeUnit): Boolean

    Definition Classes
    AbstractFilterable → AbstractLifeCycle → LifeCycle2
  53. def stop(arg0: Future[_]): Boolean

    Attributes
    protected[org.apache.logging.log4j.core]
    Definition Classes
    AbstractLifeCycle
  54. def stop(): Unit

    Definition Classes
    AbstractLifeCycle → LifeCycle
  55. def stopBuffer(): Unit

    Plays buffered events and disables buffering.

  56. def stopQuietly(): Unit

  57. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  58. def toString(): String

    Definition Classes
    AbstractAppender → AnyRef → Any
  59. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AbstractAppender

Inherited from Appender

Inherited from AbstractFilterable

Inherited from Filterable

Inherited from AbstractLifeCycle

Inherited from LifeCycle2

Inherited from LifeCycle

Inherited from AnyRef

Inherited from Any

Ungrouped